body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: linear-gradient(to right, #a8dadc, #457b9d); /* Light blue to medium blue */
    color: white;
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px;
    margin-right: 25px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

section {
    padding: 2em;
    margin-bottom: 2em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #1d3557; /* Dark blue */
    border-bottom: 2px solid #457b9d;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

/* About Section */
.about-section {
    display: flex;
    gap: 2em;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 75%;
    height: auto;
    border-radius: 5px;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, #f1faee, #a8dadc); /* Light green to light blue */
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
}

.service-box {
    background-color: white;
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    color: #1d3557;
    margin-top: 0;
    margin-bottom: 0.5em;
}

/* academy Section */
.academy-section {
    background: linear-gradient(to bottom, #f1faee, #a8dadc); /* Light green to light blue */
}

.academy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
}

.academy-box {
    background-color: white;
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.academy-box h3 {
    color: #1d3557;
    margin-top: 0;
    margin-bottom: 0.5em;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #e6f7f9; /* Very light blue */
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
}

.testimonial-box {
    background-color: white;
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-style: italic;
    color: #555;
}

.testimonial-box .quote::before {
    content: "\201C"; /* Left double quotation mark */
    font-size: 2em;
    color: #457b9d;
    line-height: 0.5;
    vertical-align: -0.4em;
    margin-right: 0.2em;
}

.testimonial-box .quote::after {
    content: "\201D"; /* Right double quotation mark */
    font-size: 2em;
    color: #457b9d;
    line-height: 0.5;
    vertical-align: -0.4em;
    margin-left: 0.2em;
}

.testimonial-box .author {
    font-style: normal;
    text-align: right;
    color: #777;
    margin-top: 1em;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, #a8dadc, #457b9d); /* Light blue to medium blue */
    color: white;
    text-align: center;
    padding: 3em 2em;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

.book-now-button {
    display: inline-block;
    background-color: #25d366; /* WhatsApp green */
    color: white;
    padding: 1em 2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 1em;
    transition: background-color 0.3s ease;
}

.book-now-button:hover {
    background-color: #128c7e; /* Darker WhatsApp green */
}

.instagram-link {
    margin-top: 1em;
}

/* Footer */
footer {
    background-color: #1d3557; /* Dark blue */
    color: white;
    text-align: center;
    padding: 1em;
    position: sticky;
    bottom: 0;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        margin-bottom: 1em;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5em 0;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1; /* Move image above text on smaller screens */
        margin-bottom: 1em;
    }
}