/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #ffdab9; /* Light orange */
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2rem;
    color: #4682b4; /* Light blue */
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4682b4;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #e6f0fa; /* Light blue background */
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.benefits, .testimonials, .contact-form, .gallery {
    padding: 40px 20px;
}

.benefits h2, .testimonials h2, .contact-form h2, .gallery h2 {
    font-size: 1.6rem;
    color: #4682b4;
    margin-bottom: 20px;
    text-align: center;
}

.benefits ul {
    list-style: disc;
    margin-left: 20px;
}

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

.testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial p {
    margin-bottom: 10px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
    color: #333;
}

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

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

.btn {
    background-color: #4682b4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
    display: inline-block;
}

.btn:hover {
    background-color: #ffdab9;
    color: #333;
    transform: scale(1.05);
}

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

.gallery-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    background-color: #ffdab9;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

footer ul li a {
    text-decoration: none;
    color: #333;
}

footer ul li a:hover {
    color: #4682b4;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}