* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5e8;
    color: #333;
}

.navbar {
    background-color: #e6f0fa;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90e2;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #4a90e2;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #e6f0fa;
}

.hero img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.benefits {
    padding: 3rem 2rem;
    text-align: center;
}

.benefits h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonials {
    padding: 3rem 2rem;
    background-color: #e6f0fa;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial h4 {
    color: #4a90e2;
}

.contact-form {
    padding: 3rem 2rem;
    text-align: center;
}

.contact-form h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 2rem;
}

.contact-form form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-size: 1rem;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.content {
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content h1 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.content p,
.content ul {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content ul {
    list-style: disc;
    padding-left: 2rem;
}

.gallery {
    padding: 3rem 2rem;
    text-align: center;
}

.gallery h1 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #e6f0fa;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.footer-links li a:hover {
    color: #4a90e2;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #e6f0fa;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .benefits h2,
    .testimonials h2,
    .contact-form h2,
    .content h1,
    .gallery h1 {
        font-size: 1.5rem;
    }
}