/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #7BA874;
    --light-green: #A8D5A0;
    --dark-green: #5A8952;
    --accent-green: #E8F5E6;
    --text-dark: #2C3E2D;
    --text-light: #4A5F4A;
    --white: #FFFFFF;
    --light-gray: #F5F7F5;
    --border-color: #D4E4D3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.tagline {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-green);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--accent-green);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.content-main p {
    margin-bottom: 20px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: var(--accent-green);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.info-box h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-box p {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-box h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Treatment Methods */
.treatment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.method-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-green);
}

.method-card h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.content-block {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.content-block p {
    margin-bottom: 20px;
}

/* Accordion */
.accordion {
    max-width: 1000px;
    margin: 40px auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    background: var(--accent-green);
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--light-green);
}

.accordion-header h3 {
    color: var(--dark-green);
    font-size: 1.2rem;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 25px;
}

.accordion-content p {
    margin-bottom: 15px;
}

.accordion-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.accordion-content h4 {
    color: var(--primary-green);
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Why Choose */
.why-choose {
    margin: 40px 0;
}

.why-choose h3 {
    text-align: center;
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-item h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    margin: 60px 0;
}

.process-steps h3 {
    text-align: center;
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 40px;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact CTA */
.contact-cta {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-cta h3 {
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-persons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-person {
    padding: 25px;
    background: var(--accent-green);
    border-radius: 10px;
}

.contact-person h4 {
    color: var(--dark-green);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.role {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.contact-person a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-person a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.contact-general {
    margin-top: 30px;
    font-size: 1.1rem;
}

/* Quality Cards */
.quality-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.quality-intro h3 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.quality-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.quality-card {
    background: var(--accent-green);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.quality-card h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Rights Section */
.rights-section {
    max-width: 1000px;
    margin: 60px auto;
}

.rights-section h3 {
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.rights-section>p {
    text-align: center;
    margin-bottom: 40px;
}

.rights-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.rights-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rights-box h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Staff Section */
.staff-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: var(--accent-green);
    border-radius: 15px;
}

.staff-section h3 {
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.staff-section p {
    margin-bottom: 20px;
}

/* Contact Section */
.section-contact {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-main h3 {
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.key-contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.key-contact {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.key-contact h4 {
    color: var(--dark-green);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.key-contact a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.key-contact a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-green);
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--light-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        padding: 80px 30px;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .rights-boxes {
        grid-template-columns: 1fr;
    }

    .feature-boxes,
    .treatment-methods,
    .quality-areas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 15px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .section {
        padding: 50px 15px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}