/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.navbar {
    background-color: #f8faf9;
    border-bottom: 1px solid #e2e8e7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #2d3748;
    background-color: #e6f3f0;
}

.nav-link.active {
    color: #2c7a64;
    background-color: #d4f4e8;
    font-weight: 600;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, rgba(44, 122, 100, 0.9), rgba(56, 161, 105, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-small {
    background: linear-gradient(135deg, rgba(44, 122, 100, 0.9), rgba(56, 161, 105, 0.8));
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-small p {
    font-size: 1.2rem;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2c7a64;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #ffffff;
}

.cta-button:hover {
    background: #f7faf9;
    color: #22543d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
section {
    padding: 60px 0;
}

.about {
    background-color: #f7faf9;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
    font-size: 2.5rem;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
}

/* Insurance Section */
.insurance {
    background-color: #ffffff;
    text-align: center;
}

.insurance h2 {
    margin-bottom: 3rem;
    color: #2d3748;
    font-size: 2.2rem;
}

.insurance-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.insurance-logo {
    height: 80px;
    width: auto;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.insurance-logo:hover {
    filter: none;
    transform: scale(1.05);
}

/* Contact Info Section */
.contact-info {
    background-color: #f0f7f4;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    color: #2c7a64;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item p {
    color: #4a5568;
    font-size: 1.1rem;
}

.contact-item a {
    color: #2c7a64;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #2d7467;
}

.service-note {
    background: #d4f4e8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c7a64;
    margin-top: 2rem;
}

.service-note p {
    color: #22543d;
    font-size: 1rem;
    text-align: center;
}

/* Process Steps */
.process-steps {
    background-color: #f7faf9;
}

.process-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
    font-size: 2.5rem;
}

.step {
    display: flex;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #2c7a64, #2d7467);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c7a64;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content h4 {
    color: #2d7467;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.step-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.step-content ul {
    color: #4a5568;
    margin-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c7a64, #2d7467);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Appointment Form */
.appointment-form {
    background-color: #f7faf9;
}

.appointment-form .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: #2c7a64;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-container > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.intake-form .form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c7a64;
    box-shadow: 0 0 0 3px rgba(44, 122, 100, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-button {
    background: linear-gradient(135deg, #2c7a64, #2d7467);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #276749, #22543d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 122, 100, 0.3);
}

.success-message {
    background: #d4f4e8;
    border: 2px solid #2c7a64;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.success-message h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.success-message p {
    color: #2c7a64;
}

.appointment-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.appointment-info h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.appointment-info ul {
    color: #4a5568;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.appointment-info li {
    margin-bottom: 0.5rem;
}

.appointment-info p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.appointment-info a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #2d3748;
    color: #ffffff;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p,
.footer-section li {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

         .nav-menu {
         position: fixed;
         left: -100%;
         top: 70px;
         flex-direction: column;
         background-color: #f8faf9;
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
         padding: 2rem 0;
         border-top: 1px solid #e2e8e7;
     }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-small h1 {
        font-size: 2rem;
    }

    .insurance-logos {
        gap: 1.5rem;
    }

    .insurance-logo {
        height: 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .appointment-form .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        align-items: flex-start;
    }
}

/* Policy Page Styles */
.policy-content {
    background-color: #f7faf9;
    padding: 60px 0;
}

.policy-document {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.policy-document h3 {
    color: #2c7a64;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    border-bottom: 2px solid #e6f3f0;
    padding-bottom: 0.5rem;
}

.policy-document p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-document ul {
    color: #4a5568;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-document li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-document a {
    color: #2c7a64;
    text-decoration: none;
    font-weight: 600;
}

.policy-document a:hover {
    color: #2d7467;
    text-decoration: underline;
}

.policy-footer {
    background: #f0f7f4;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.policy-footer p {
    margin-bottom: 0.5rem;
}

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

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .insurance-logos {
        gap: 1rem;
    }

    .insurance-logo {
        height: 50px;
    }

    .policy-document {
        padding: 2rem 1.5rem;
    }

    .policy-footer {
        padding: 1.5rem;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

/* Team Page Styles */
.team-section {
    background-color: #f7faf9;
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-intro h2 {
    color: #2c7a64;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-intro p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.clinicians-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.clinician-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinician-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clinician-image {
    flex-shrink: 0;
}

.clinician-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4f4e8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.placeholder-image {
    width: 150px;
    height: 150px;
    background: #e6f3f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c7a64;
    font-weight: 600;
    border: 3px solid #d4f4e8;
}

.clinician-info h3 {
    color: #2c7a64;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.clinician-title {
    color: #2d7467;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.clinician-credentials {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.clinician-bio {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.clinician-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: #d4f4e8;
    color: #2c7a64;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .clinician-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .clinician-photo,
    .placeholder-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .team-intro h2 {
        font-size: 2rem;
    }
    
    .clinician-specialties {
        justify-content: center;
    }
} 