/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #90a955;
    --secondary-color: #e0e0c9;
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #faf8f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
   /* padding: 0 15px; */
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.btn:hover {
    background-color: #698659;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light-text);
}

/* Header Styles */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-icons a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: url('assets/images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 500px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    margin-bottom: 30px;
}

.location {
    position: absolute;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    background-color: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
}

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 30%;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    margin: 0;
}

/* Health Shop Section */
.health-shop {
    padding: 80px 0;
}

.shop-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.shop-images {
    flex: 1;
    position: relative;
}

.img-1 {
    width: 80%;
}

.img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border: 5px solid var(--white);
}

.shop-text {
    flex: 1;
    position: relative;
}

.products-count {
    border: 1px dashed var(--primary-color);
    display: inline-block;
    padding: 15px 30px;
    margin-top: 30px;
}

.products-count h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.products-count p {
    margin-bottom: 0;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background-color: var(--white);
}

.booking-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.booking-form {
    flex: 1;
    background-color: #a5b794;
    padding: 40px;
    border-radius: 4px;
    position: relative;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-image: url('https://dummyimage.com/100x100/a5b794/fff&text=leaf');
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 4px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.booking-form .btn {
    background-color: var(--white);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.booking-image {
    flex: 1;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Educational Content Section */
.educational {
    padding: 80px 0;
}

.educational-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.article-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.article-image img:hover {
    transform: scale(1.05);
}

.article-card p {
    flex-grow: 1;
}

.article-card .btn {
    align-self: flex-start;
}

/* Footer Styles */
footer {
    background-color: var(--white);
    padding: 60px 0 20px;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo p {
    margin-top: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.footer-contact {
    width: 25%;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.footer-link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-link-group ul li {
    margin-bottom: 8px;
}

.footer-link-group ul li a {
    color: var(--light-text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-link-group ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-text);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .feature {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .shop-content, .booking-content, .educational-content {
        flex-direction: column;
    }
    
    .img-2 {
        position: relative;
        width: 80%;
        margin-top: 20px;
    }
    
    .footer-contact, .footer-links {
        width: 100%;
    }
    
    .footer-contact {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .navbar {
        flex-direction: column;
    }
    
    .nav-links {
        margin: 20px 0;
    }
    
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-link-group {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 576px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hero-content {
        padding: 20px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1500;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1400;
    transition: all 0.4s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 40px;
    overflow-y: auto;
}

.mobile-menu-wrapper.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.mobile-nav-links li {
    margin: 12px 0;
}

.mobile-nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.mobile-nav-links a i {
    margin-right: 15px;
    width: 20px;
    color: var(--primary-color);
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mobile-contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mobile-contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mobile-contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mobile-contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.mobile-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Update responsive styles */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        flex-direction: row;
    }
    
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-link-group {
        margin-bottom: 20px;
    }
    
    /* Adjust nav icons positioning */
    .nav-icons {
        gap: 15px;
    }
}

/* Mobile Menu Styles - Make sure toggle is visible */
.mobile-menu-toggle {
    display: none; /* Will be changed to flex on mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1500;
    position: absolute;
    right: 20px;
    top: 25px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Active state styling for mobile toggle */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Update responsive styles */
@media screen and (max-width: 768px) {
    body {
        padding-top: 0; /* Remove any padding if it exists */
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex; /* Show the toggle on mobile */
    }
    header {
        padding: 0;
    }
    header .container {
        position: relative; /* For absolute positioning of toggle */
        padding-right: 50px; /* Make space for the toggle */
    }
    
    /* Fix any header layout issues */
    .navbar {
        padding: 10px 0;
    }
    
    /* Add no-scroll class for when menu is open */
    body.no-scroll {
        overflow: hidden;
    }
}
/* ...existing code... */

.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 4px;
    appearance: none; /* Remove default styling */
    -webkit-appearance: none; 
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px; /* Make space for the arrow */
}

.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px;
}

/* For Firefox - special handling */
.form-group select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--white);
}

/* For disabled option */
.form-group select option[disabled] {
    color: rgba(255, 255, 255, 0.5);
}

/* Placeholder styling (first option) */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.8);
}

/* ...existing code... */
.nav-icons .whatsapp-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.nav-icons .whatsapp-icon:hover {
    color: #25D366; /* WhatsApp's brand color */
}
.nav-cta {
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366; /* WhatsApp brand color */
    color: var(--white);
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background-color: #128C7E; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .whatsapp-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* About Us Page Styles */
.page-banner {
    background-color: var(--primary-color);
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.page-banner h1 {
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Story Section */
.about-story {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    text-align: left;
}

.about-stats {
    display: flex;
    margin-top: 40px;
    gap: 40px;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

/* Vision & Mission Section */
.vision-mission {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.vm-content {
    display: flex;
    gap: 40px;
}

.vm-box {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vm-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.vm-box h3 {
    margin-bottom: 15px;
}

.vm-box p {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-members {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid rgba(144, 169, 85, 0.3);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
}

.member-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.member-desc {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.testimonials {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    position: relative;
    padding-top: 25px;
    margin-bottom: 25px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 4rem;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--light-text);
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive styles for About Us page */
@media screen and (max-width: 992px) {
    .about-content, .vm-content, .team-members, .testimonials {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .about-stats {
        justify-content: space-between;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        padding: 100px 0 40px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* Active link style */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Services Page Styles */
.services-main {
    padding: 80px 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 8px;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.service-features {
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Service Benefits Section */
.service-benefits {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

/* Services Booking Section - Style Modification */
.services-booking {
    background-color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* Responsive styles for Services page */
@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Klinik Page Styles */
.klinik-main {
    padding: 80px 0 40px;
}

.klinik-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.klinik-intro h2 {
    margin-bottom: 20px;
}

.klinik-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Gallery styles */
.klinik-gallery {
    margin-bottom: 60px;
}

.klinik-gallery .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    margin: 0;
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Facilities section */
.facilities {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.facility-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.facility-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.facility-item h3 {
    margin-bottom: 10px;
}

.facility-item p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--light-text);
}

/* Location section */
.location-section {
    padding: 80px 0;
}

.location-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.location-map {
    flex: 1.3;
    border-radius: 8px;
    overflow: hidden;
}

.location-details {
    flex: 1;
}

.location-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.location-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.location-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.location-item p {
    color: var(--light-text);
    margin-bottom: 5px;
}

.location-item p:last-child {
    margin-bottom: 0;
}

/* Reservation CTA */
.reservation-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.reservation-cta .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for Klinik page */
@media screen and (max-width: 992px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        flex-direction: column;
    }
    
    .reservation-cta .container {
        flex-direction: column;
    }
    
    .cta-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .cta-content h2 {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Pelatihan Page Styles */
.training-intro {
    padding: 80px 0;
}

.intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.training-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.stat-box h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

/* Training Programs */
.training-programs {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-header {
    background-color: var(--primary-color);
    padding: 20px;
    color: var(--white);
}

.program-header h3 {
    margin-bottom: 10px;
    color: var(--white);
}

.program-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.program-content {
    padding: 25px;
}

.program-features {
    margin: 20px 0;
}

.program-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.program-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.program-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.program-card .btn {
    display: block;
    text-align: center;
}

/* Course Structure */
.course-structure {
    padding: 80px 0;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.structure-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.structure-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.structure-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.structure-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.structure-item h3 {
    margin-bottom: 15px;
}

.structure-item p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
}

/* Instructors */
.instructors {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.instructors-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.instructor-card {
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.instructor-image {
    width: 200px;
    height: auto;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    padding: 30px;
    flex: 1;
}

.instructor-info h3 {
    margin-bottom: 5px;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.instructor-specialties span {
    background-color: rgba(144, 169, 85, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Training Testimonials */
.training-testimonials {
    padding: 80px 0;
}

/* Registration CTA */
.registration-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-wrapper > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-form {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
}

.cta-form h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.cta-form .form-group {
    margin-bottom: 15px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 4px;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.cta-form select option {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-form button {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

.cta-form button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive styles for Training page */
@media screen and (max-width: 992px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .program-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .structure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instructor-card {
        flex-direction: column;
    }
    
    .instructor-image {
        width: 100%;
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .training-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
}
/* Privacy Policy Page Styles */
.privacy-content {
    padding: 80px 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.last-updated {
    margin-bottom: 30px;
    color: var(--light-text);
    font-style: italic;
    text-align: right;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: left;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    position: relative;
    padding-left: 5px;
}

.contact-details {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Responsive styles for Privacy page */
@media screen and (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Service Detail Page Styles */
.service-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 80px;
    position: relative;
}

.service-hero-content {
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    color: var(--white);
    font-weight: 600;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
}

.service-overview-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-overview-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-overview-text {
    flex: 1;
}

.service-overview-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.service-overview-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.highlight-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.highlight-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.highlight-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--light-text);
    line-height: 1.6;
}

/* Service Process */
.service-process {
    padding: 80px 0;
}

.process-steps {
    margin-top: 50px;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    height: calc(100% - 30px);
    width: 2px;
    background-color: rgba(144, 169, 85, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    background-color: #f7f7f7;
    padding: 25px 30px;
    border-radius: 8px;
    flex-grow: 1;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--light-text);
}

/* Service Testimonials */
.service-testimonials {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    flex: 1;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(144, 169, 85, 0.2);
    font-size: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin: 30px 0;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0 0 5px;
}

.testimonial-rating {
    color: #ffc107;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f7f7f7;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    padding: 0 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 20px;
}

.service-card-content h3 {
    margin-bottom: 10px;
}

.service-card-content p {
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.btn-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-text i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
}

.booking-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.booking-text {
    flex: 1.2;
}

.booking-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.booking-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.booking-features {
    margin-bottom: 30px;
}

.booking-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.booking-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.booking-actions {
    display: flex;
    gap: 20px;
}

.booking-actions .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.booking-actions .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.booking-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-overview-content {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .service-highlights {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .booking-actions {
        flex-direction: column;
    }
}

/* Problem Section Styles */
.problem-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.problem-card h3 {
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--light-text);
    line-height: 1.6;
}

/* Expert Section Styles */
.expert-section {
    padding: 80px 0;
}

.expert-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.expert-card {
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expert-image {
    width: 200px;
    min-width: 200px;
    height: auto;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    padding: 30px;
    flex: 1;
}

.expert-info h3 {
    margin-bottom: 5px;
}

.expert-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.expert-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.expert-certifications span {
    background-color: rgba(144, 169, 85, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive styles for problem and expert sections */
@media screen and (max-width: 992px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expert-card {
        flex-direction: column;
    }
    
    .expert-image {
        width: 100%;
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles for Chronic Disease Therapy page */

/* Important notice styling */
.important-notice {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 240, 230, 0.8);
    border-left: 4px solid #ff9800;
    padding: 15px;
    border-radius: 4px;
    margin: 25px 0;
}

.important-notice i {
    color: #ff9800;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.important-notice p {
    margin: 0;
    font-size: 0.95rem;
}

.important-notice strong {
    font-weight: 600;
}

/* Conditions Section */
.conditions-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.condition-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.condition-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.condition-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.condition-card h3 {
    margin-bottom: 15px;
}

.condition-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--light-text);
    line-height: 1.6;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-text {
    flex: 1;
}

.approach-item {
    display: flex;
    margin-bottom: 30px;
}

.approach-item:last-child {
    margin-bottom: 0;
}

.approach-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(144, 169, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.approach-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.approach-details h3 {
    margin-bottom: 10px;
}

.approach-details p {
    margin: 0;
    color: var(--light-text);
    line-height: 1.6;
}

/* Program Section */
.program-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.program-steps {
    margin-top: 50px;
}

/* Medical Coordination */
.medical-coordination {
    padding: 80px 0;
}

.medical-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.medical-text {
    flex: 1.2;
}

.medical-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.medical-text > p {
    margin-bottom: 30px;
}

.coordination-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coordination-point {
    display: flex;
    align-items: flex-start;
}

.coordination-point i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.coordination-point p {
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

.medical-image {
    flex: 1;
}

.medical-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.story-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

.story-header h3 {
    margin-bottom: 5px;
}

.story-header p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

.story-content p {
    margin: 0;
    line-height: 1.8;
    font-style: italic;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.faq-answer ul li {
    margin-bottom: 5px;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-content,
    .medical-content {
        flex-direction: column;
    }
    
    .approach-image,
    .medical-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-item {
        flex-direction: column;
    }
    
    .approach-icon {
        margin-bottom: 15px;
    }
    
    .coordination-point {
        flex-direction: column;
    }
    
    .coordination-point i {
        margin-bottom: 10px;
    }
}

/* Services Home Section - Dedicated styles for homepage services */
.services-home {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.services-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-home-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-home-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-home-image {
    height: 220px;
    overflow: hidden;
}

.service-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-home-card:hover .service-home-image img {
    transform: scale(1.1);
}

.service-home-card h3 {
    padding: 20px 20px 5px;
    margin: 0;
    font-size: 1.3rem;
    color: #333;
}

.service-home-price {
    padding: 0 20px;
    color: #90a955;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-home-card p {
    padding: 0 20px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 80px; /* Fixed height for description */
}

.service-home-features {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 15px;
}

.service-home-features span {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
}

.service-home-features span i {
    margin-right: 5px;
    color: #90a955;
}

.service-home-card .btn {
    display: block;
    margin: 0 20px 20px;
    text-align: center;
    padding: 10px;
    background-color: #90a955;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-home-card .btn:hover {
    background-color: #768c46;
}

.services-home-cta {
    margin-top: 50px;
    text-align: center;
}

.services-home-cta p {
    color: #666;
    margin-bottom: 20px;
}

/* Responsive adjustments for services-home */
@media screen and (max-width: 992px) {
    .services-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-home-grid {
        grid-template-columns: 1fr;
    }
    
    .service-home-card p {
        height: auto; /* Remove fixed height on mobile */
    }
}

/* Brief About Section for Homepage */
.about-brief {
    padding: 80px 0;
    background-color: #fff;
}

.about-brief-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-brief-text {
    flex: 1;
}

.about-brief-text h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
}

.about-brief-text p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.about-brief-stats {
    display: flex;
    margin-bottom: 30px;
    gap: 40px;
}

.stat-brief-item {
    text-align: center;
}

.stat-brief-item h3 {
    font-size: 2.5rem;
    color: #90a955;
    margin-bottom: 5px;
}

.stat-brief-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

.about-brief-image {
    flex: 1;
    position: relative;
}

.about-brief-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-brief-badge {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background-color: #90a955;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .about-brief-content {
        flex-direction: column-reverse;
    }
    
    .about-brief-stats {
        justify-content: space-around;
    }
}

@media screen and (max-width: 768px) {
    .about-brief {
        padding: 60px 0;
    }
    
    .about-brief-text h2 {
        font-size: 1.8rem;
    }
    
    .stat-brief-item h3 {
        font-size: 2rem;
    }
}