* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
nav {
    background-color: #1E40AF;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
nav .menu {
    display: flex;
    list-style: none;
}
nav .menu li {
    margin-left: 20px;
}
nav .menu a {
    color: white;
    text-decoration: none;
}
nav .nav-button:hover {
    color: blue;
}

.banner {
    background-color: #2563EB;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
}
.banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #3B82F6;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
}
.services {
    padding: 80px 0;
    background-color: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.services .title {
    text-align: center; 
    margin-bottom: 40px; 
    font-size: 2.5rem;
}
.service-card {
    background-color: #F3F4F6;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.gallery {
    background-color: #2563EB;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
}
.gallery .title {
    text-align: center; 
    margin-bottom: 40px; 
    font-size: 2.5rem;
}
.gallery h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.gallery p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.glide__slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: solid 2px;
}
.glide__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.glide__arrow {
    background: rgba(0,0,0,0.5);
    color: white;
    border: solid 1px;
    padding: 12px;
    cursor: pointer;
    border-color: white;
}

.about {
    background-color: #1E40AF;
    color: white;
    padding: 80px 0;
}
.about .title {
    text-align: center; 
    margin-bottom: 40px; 
    font-size: 2.5rem;
}
.contact {
    background-color: #F3F4F6;
    padding: 80px 0;
}
.contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.contact input,
.contact textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact textarea {
    height: 150px;
}
.contact .title {
    text-align: center; 
    margin-bottom: 40px; 
    font-size: 2.5rem;
}
.submit-button {
    background-color: #2563EB;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    cursor: pointer;
}
footer {
    background-color: #1E40AF;
    color: white;
    text-align: center;
    padding: 30px 0;
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    nav .menu {
        display: none;
    }
}