/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #374151;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Acme', sans-serif;
    font-weight: bold;
    color: #1f2937;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.25rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Utility Classes */
.hidden {
    display: none;
}

.accent-text {
    color: #7bc13b;
}

.phone-highlight {
    color: #1274d9;
    font-weight: 600;
}

/* Icons */
.icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.external-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.top-contact-bar {
    background-color: #1274d9;
    color: white;
    padding: 0.5rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .contact-info {
        flex-direction: row;
        justify-content: space-between;
    }
}

.contact-left, .contact-right, .contact-center {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.contact-center {
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-left, .contact-right {
        margin-bottom: 0;
    }
}

.contact-item {
    display: flex;
    align-items: center;
}

.emergency-btn {
    background-color: #7bc13b;
    color: white;
    padding: 0.375rem 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.emergency-btn:hover {
    opacity: 0.9;
}

/* Main Navigation */
.main-nav {
    padding: 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.logos-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.chla-logo-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.chla-logo-link:hover {
    opacity: 0.8;
}

.chla-logo {
    height: 3rem;
    width: auto;
}

@media (min-width: 640px) {
    .chla-logo {
        height: 3.5rem;
    }
}

@media (min-width: 768px) {
    .chla-logo {
        height: 4rem;
    }
}


/* Compact Care Cards */
.hero-cards-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 4rem;
}

@media (max-width: 640px) {
    .hero-cards-compact {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
    }
}

.hero-card-compact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-card-icons-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hero-card-icon-compact {
    width: 1.5rem;
    height: 1.5rem;
    color: #7bc13b;
}

.hero-card-icon-compact:nth-child(2) {
    color: #1274d9;
}

.hero-card-title-compact {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.hero-card-desc-compact {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.25;
}


/* Additional Resources Section */
.additional-resources-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.resource-category {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.resource-category:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.resource-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.resource-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(18, 116, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.resource-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #1274d9;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin: 0;
}

.resource-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-links li {
    margin-bottom: 0.75rem;
}

.resource-links li:last-child {
    margin-bottom: 0;
}

.resource-link {
    display: flex;
    align-items: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s;
    width: 100%;
}

.resource-link:hover {
    color: #000000;
    text-decoration: underline;
}

.resource-link:hover .link-icon {
    color: #000000;
}

.link-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem;
    color: #9ca3af;
    transition: color 0.2s;
}

.office-info {
    margin-top: 0.75rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.office-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.office-item:last-child {
    margin-bottom: 0;
}

.office-item .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.logo {
    height: 4rem;
    width: auto;
}

@media (min-width: 640px) {
    .logo {
        height: 4.5rem;
    }
}

@media (min-width: 768px) {
    .logo {
        height: 5rem;
    }
}

/* CHLA Co-brand */
.chla-cobrand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chla-cobrand-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    display: none;
}

@media (min-width: 640px) {
    .chla-cobrand-text {
        display: block;
    }
}

.chla-cobrand-link {
    transition: opacity 0.2s ease;
}

.chla-cobrand-link:hover {
    opacity: 0.8;
}

.chla-cobrand-logo {
    height: 1.5rem;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

@media (min-width: 640px) {
    .chla-cobrand-logo {
        height: 1.75rem;
        max-width: 120px;
    }
}

@media (min-width: 768px) {
    .chla-cobrand-logo {
        height: 2rem;
        max-width: 120px;
    }
}

/* CHLA Trust Badge in Panels Section */
.chla-trust-panels {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.chla-trust-badge-panels {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chla-trust-text-panels {
    font-size: 0.875rem;
    color: #374151;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.chla-trust-text-panels:hover {
    opacity: 0.8;
}

.chla-trust-link-panels {
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.chla-trust-link-panels:hover {
    opacity: 0.8;
}

.chla-trust-logo-panels {
    height: 1.75rem;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}

.nav-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: #1f2937;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #1274d9;
}

.nav-link.active {
    color: #1274d9;
    font-weight: 700;
}

.appointment-btn {
    background-color: #7bc13b;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.appointment-btn:hover {
    opacity: 0.9;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #1f2937;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon, .close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-nav-link {
    background: none;
    border: none;
    color: #1f2937;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    text-align: left;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: #1274d9;
}

.mobile-nav-link.active {
    color: #1274d9;
    font-weight: 700;
}

.mobile-appointment-btn {
    background-color: #7bc13b;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
}

.mobile-appointment-btn:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0 8rem;
    background-image: url('../assets/images/image_1756147506932.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 8rem 0;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    display: grid;
    gap: 4rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
        margin-bottom: 0;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero CTA Buttons Container */
.hero-cta-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-cta-simple {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-cta-simple {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #7bc13b;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
    min-height: 48px;
}

@media (min-width: 640px) {
    .btn-primary {
        width: auto;
    }
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    min-height: 48px;
}

@media (min-width: 640px) {
    .btn-outline {
        width: auto;
    }
}

.btn-outline:hover {
    background-color: white;
    color: #1e3a8a;
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-cards {
        margin-top: 0;
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hero-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
    color: #7bc13b;
}

.hero-card-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.hero-card-desc {
    color: #6b7280;
    font-size: 0.875rem;
}

/* CHLA Care Network Section */
.chla-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 4px solid #1274d9;
}

@media (min-width: 640px) {
    .chla-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .chla-section {
        padding: 5rem 0;
    }
}

.chla-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chla-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 800px;
    width: 100%;
}

@media (min-width: 640px) {
    .chla-link {
        padding: 2.5rem 2rem;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .chla-link {
        flex-direction: row;
        gap: 3rem;
        padding: 3rem 3.5rem;
        max-width: 900px;
    }
}

@media (min-width: 1024px) {
    .chla-link {
        padding: 3.5rem 4rem;
        gap: 4rem;
        max-width: 1000px;
    }
}

.chla-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.chla-text-wrapper {
    text-align: center;
    flex: 1;
}

@media (min-width: 768px) {
    .chla-text-wrapper {
        text-align: left;
    }
}

.chla-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    font-family: 'Acme', sans-serif;
    letter-spacing: 0.025em;
    line-height: 1.3;
}

@media (min-width: 480px) {
    .chla-text {
        font-size: 1.25rem;
    }
}

@media (min-width: 640px) {
    .chla-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .chla-text {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .chla-text {
        font-size: 2rem;
    }
}

.chla-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .chla-logo-wrapper {
        width: auto;
    }
}

.chla-logo {
    height: 5rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width: 480px) {
    .chla-logo {
        height: 6rem;
    }
}

@media (min-width: 640px) {
    .chla-logo {
        height: 7rem;
        max-width: 350px;
    }
}

@media (min-width: 768px) {
    .chla-logo {
        height: 8rem;
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    .chla-logo {
        height: 10rem;
        max-width: 500px;
    }
}

@media (min-width: 1280px) {
    .chla-logo {
        height: 12rem;
        max-width: 600px;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 4px solid #e5e7eb;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-icon-blue {
    background-color: rgba(18, 116, 217, 0.1);
}

.service-icon-blue svg {
    color: #1274d9;
}

.service-icon-green {
    background-color: rgba(123, 193, 59, 0.1);
}

.service-icon-green svg {
    color: #7bc13b;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-link {
    background: none;
    border: none;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    text-decoration: none;
}

.service-link:hover {
    color: #000000;
    text-decoration: underline;
}

/* Providers Section */
.providers-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #dbeafe, white);
    border-bottom: 4px solid #bfdbfe;
}

.provider-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .provider-content {
        grid-template-columns: 1fr 1fr;
    }
}

.provider-image {
    order: 2;
}

@media (min-width: 1024px) {
    .provider-image {
        order: 1;
    }
}

.provider-photo {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.provider-info {
    order: 1;
}

@media (min-width: 1024px) {
    .provider-info {
        order: 2;
    }
}

.provider-name {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .provider-name {
        font-size: 2.25rem;
    }
}

.provider-location {
    font-size: 1rem;
    font-weight: 600;
    color: #1274d9;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .provider-location {
        font-size: 1.125rem;
    }
}

.provider-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.provider-credentials {
    margin-bottom: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.credential-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    color: #1274d9;
}

.credential:nth-child(odd) .credential-icon {
    color: #1274d9;
}

.credential:nth-child(even) .credential-icon {
    color: #7bc13b;
}

.provider-personal {
    color: #6b7280;
    line-height: 1.6;
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    border-bottom: 4px solid #e5e7eb;
}

.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content-reverse {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .about-content-reverse .about-info {
        order: 1;
    }
    
    .about-content-reverse .about-image {
        order: 2;
    }
}

.about-photo {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Specific styling for the first image in about section */
.about-content:not(.about-content-reverse) .about-photo {
    height: 400px;
    object-position: center top;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .about-subtitle {
        font-size: 1.75rem;
    }
}

.about-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .about-text {
        font-size: 1.125rem;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
}

.stat-icon-blue {
    background-color: rgba(18, 116, 217, 0.1);
}

.stat-icon-blue svg {
    color: #1274d9;
}

.stat-icon-green {
    background-color: rgba(123, 193, 59, 0.1);
}

.stat-icon-green svg {
    color: #7bc13b;
}

.stat-number {
    font-weight: bold;
    font-size: 2rem;
}

.stat-number-blue {
    color: #1274d9;
}

.stat-number-green {
    color: #7bc13b;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Resources Section */
.resources-section {
    margin-top: 5rem;
    text-align: center;
}

.resources-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .resources-title {
        font-size: 1.75rem;
    }
}

.resources-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .resources-buttons {
        flex-direction: row;
    }
}

.resource-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.resource-btn:hover {
    opacity: 0.9;
}

.resource-btn-blue {
    background-color: #1274d9;
}

.resource-btn-green {
    background-color: #7bc13b;
}

.resources-note {
    font-size: 0.875rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

/* Unique Section */
.unique-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f0fdf4, white);
    border-bottom: 4px solid #bbf7d0;
}

.unique-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .unique-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.unique-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.unique-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.unique-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.unique-icon svg {
    width: 2rem;
    height: 2rem;
}

.unique-icon-blue {
    background-color: rgba(18, 116, 217, 0.1);
}

.unique-icon-blue svg {
    color: #1274d9;
}

.unique-icon-green {
    background-color: rgba(123, 193, 59, 0.1);
}

.unique-icon-green svg {
    color: #7bc13b;
}

.unique-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.unique-description {
    color: #6b7280;
}

/* Sports Physical CTA */
.sports-physical-cta {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 32rem;
    margin: 0 auto;
}

.cta-question {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-message {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cta-phone-btn {
    display: inline-flex;
    align-items: center;
    background-color: #7bc13b;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cta-phone-btn:hover {
    opacity: 0.9;
}

/* Insurance Section */
.insurance-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #f9fafb);
}

.insurance-container {
    max-width: 64rem;
    margin: 0 auto;
}

.insurance-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 1px solid #f3f4f6;
}

.insurance-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.insurance-icon {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    color: #1274d9;
}

.insurance-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.insurance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.insurance-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    transition: background-color 0.2s;
}

.insurance-item:hover {
    background-color: #f3f4f6;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    color: #7bc13b;
    flex-shrink: 0;
}

.insurance-note {
    padding: 1rem;
    background-color: #eff6ff;
    border-radius: 0.5rem;
    border-left: 4px solid #1274d9;
}

.insurance-note p {
    color: #374151;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    margin-right: 0.75rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.rating-number {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 600;
}

.author-avatar-blue {
    background-color: rgba(18, 116, 217, 0.1);
    color: #1274d9;
}

.author-avatar-green {
    background-color: rgba(123, 193, 59, 0.1);
    color: #7bc13b;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-role {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Google Reviews */
.google-reviews {
    margin-top: 4rem;
    text-align: center;
}

.google-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .google-title {
        font-size: 1.75rem;
    }
}

.google-widget {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 64rem;
    margin: 0 auto 2rem;
}

.google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.google-logo {
    width: 2rem;
    height: 2rem;
    margin-right: 0.75rem;
}

.google-info {
    text-align: left;
}

.google-business-name {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1f2937;
}

.google-rating {
    display: flex;
    align-items: center;
}

.google-rating .stars {
    margin-right: 0.5rem;
}

.google-rating-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.google-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1274d9;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.google-reviews-btn:hover {
    opacity: 0.9;
}

.google-note {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.contact-card {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
}

.contact-icon-blue {
    color: #1274d9;
}

.contact-icon-green {
    color: #7bc13b;
}

.contact-card-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1f2937;
}

.contact-card-text {
    color: #6b7280;
}

.contact-highlight {
    font-weight: 600;
}

/* Hours Card */
.hours-card {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.hours-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.hours-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1f2937;
}

.hours-simple {
    text-align: left;
}

.hours-main {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.hours-note {
    color: #6b7280;
    font-size: 0.9rem;
}

.hours-grid {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.hours-day {
    font-weight: 500;
    color: #374151;
}

.hours-time {
    color: #6b7280;
}

.emergency-notice {
    padding: 0.75rem;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    border-left: 4px solid #ef4444;
}

.emergency-text {
    color: #dc2626;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.emergency-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Appointment Section */
.appointment-card {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.appointment-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.appointment-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #1274d9;
    margin-right: 0.75rem;
}

.appointment-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.appointment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7bc13b;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
}

.appointment-btn-primary:hover {
    opacity: 0.9;
}

.appointment-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #1274d9;
    border: 2px solid #1274d9;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.appointment-btn-outline:hover {
    background-color: #1274d9;
    color: white;
}

/* Map Placeholder */
.map-placeholder {
    background-color: #f3f4f6;
    border-radius: 0.75rem;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #6b7280;
}

.map-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
}

.map-title {
    font-weight: 600;
}

.map-address {
    font-size: 0.875rem;
}

/* Billing Section */
.billing-section {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .billing-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.billing-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid;
}

.billing-card-blue {
    background-color: #eff6ff;
    border-left-color: #1274d9;
}

.billing-card-green {
    background-color: #f0fdf4;
    border-left-color: #7bc13b;
}

.billing-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.billing-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
}

.billing-card-blue .billing-icon {
    color: #1274d9;
}

.billing-card-green .billing-icon {
    color: #7bc13b;
}

.billing-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1f2937;
}

.billing-content {
    color: #6b7280;
}

.billing-contact {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.billing-address {
    margin-bottom: 0.5rem;
}

.billing-phone {
    font-weight: 600;
}

.billing-card-blue .billing-phone {
    color: #1274d9;
}

.billing-card-green .billing-phone {
    color: #7bc13b;
}

/* Footer */
.footer {
    background-color: #424242;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Practice Info Section */
.footer-practice-info {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-practice-info {
        grid-column: span 2;
    }
}

.footer-brand-title {
    font-family: 'Acme', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand-description {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact-info {
    margin-top: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-contact-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Footer Sections */
.footer-section {
    grid-column: span 1;
}

.footer-section-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.5rem;
}

.footer-nav-link {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s;
    text-align: left;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-nav-link:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #6b7280;
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom-left {
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-left {
        text-align: left;
        margin-bottom: 0;
    }
}

.footer-copyright {
    color: #d1d5db;
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
}

.footer-attribution {
    color: #9ca3af;
    font-size: 0.75rem;
    margin: 0;
}

.footer-attribution-link {
    color: #d1d5db;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-attribution-link:hover {
    color: #9ca3af;
}

.footer-bottom-right {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal-link {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.footer-legal-link:hover {
    color: white;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 1rem;
}

.contact-form-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.priority-notice {
    background-color: #dbeafe;
    border-left: 4px solid #1274d9;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.priority-text {
    color: #4b5563;
    font-style: italic;
    margin: 0;
}

.contact-form-grid {
    display: grid;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-form-grid {
        grid-template-columns: 1fr 3fr;
    }
}

.practice-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #1274d9;
}

.info-card-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #424242;
}

.info-card-text {
    color: #6b7280;
    margin: 0;
}

.form-container {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1274d9;
    box-shadow: 0 0 0 3px rgba(18, 116, 217, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-consent {
    margin: 0.5rem 0;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.75rem;
}

.consent-checkbox {
    margin: 0;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.consent-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
}

.form-submit-btn {
    background-color: #7bc13b;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.form-submit-btn:hover {
    background-color: #65a30d;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Media Queries */
@media (max-width: 639px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .services-section,
    .providers-section,
    .about-section,
    .unique-section,
    .insurance-section,
    .testimonials-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

/* Privacy Policy Styles */
.privacy-main {
    padding: 2rem 0 5rem 0;
    background-color: var(--background-alt);
    min-height: 60vh;
}

.privacy-content {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.privacy-content h1 {
    font-family: 'Acme', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--neutral);
    margin-bottom: 2rem;
}

.privacy-text {
    max-width: none;
}

.privacy-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-text p {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-main {
        padding: 1rem 0 3rem 0;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-text h2 {
        font-size: 1.25rem;
    }
}

/* Forms Page Styles */
.forms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.forms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.forms-title {
    font-size: 2.5rem;
    font-family: 'Acme', sans-serif;
    color: #1f2937;
    margin-bottom: 1rem;
}

.forms-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.back-button:hover {
    background: #2563eb;
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .forms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
}

.form-section.new-patient { border-left: 4px solid #10b981; }
.form-section.telemedicine { border-left: 4px solid #3b82f6; }
.form-section.well-forms { border-left: 4px solid #8b5cf6; }
.form-section.developmental { border-left: 4px solid #f59e0b; }
.form-section.office { border-left: 4px solid #ef4444; }
.form-section.vaccines { border-left: 4px solid #06b6d4; }

.form-section .section-title {
    font-size: 1.5rem;
    font-family: 'Acme', sans-serif;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    text-align: left;
}

.section-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
}

.form-item {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border-left: 4px solid #10b981;
}

.form-item.blue { border-left-color: #3b82f6; }
.form-item.purple { border-left-color: #8b5cf6; }
.form-item.orange { border-left-color: #f59e0b; }
.form-item.red { border-left-color: #ef4444; }
.form-item.cyan { border-left-color: #06b6d4; }

.form-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.form-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.form-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #374151;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}

.form-button:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.form-button svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.special-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.special-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    flex: 1;
}

.special-item .form-button {
    width: auto;
    margin-left: 1rem;
}
/* ============================================
   REACT-MATCHING HEADER & FOOTER STYLES
   ============================================ */

/* Design Tokens */
:root {
    --header-bg: #ffffff;
    --footer-bg: #424242;
    --primary-green: #7bc13b;
    --text-gray: #6b7280;
    --text-dark: #374151;
    --text-light: #d1d5db;
    --border-gray: #f3f4f6;
}

/* React-Style Header */
.react-header {
    background: var(--header-bg);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.react-header-nav {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .react-header-nav {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .react-header-nav {
        padding: 0 2rem;
    }
}

/* Logo Section */
.react-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
}

@media (max-width: 768px) {
    .react-logo-section {
        padding: 0.5rem 0;
        border-bottom: none;
    }
}

.react-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.react-logo {
    height: 4rem;
    width: auto;
    cursor: pointer;
}

@media (min-width: 640px) {
    .react-logo {
        height: 4.5rem;
    }
}

@media (min-width: 768px) {
    .react-logo {
        height: 5rem;
    }
}

/* Contact Info */
.react-contact-info {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Hide contact info on mobile for better navigation */
@media (max-width: 768px) {
    .react-contact-info {
        display: none !important;
    }
}

.react-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.react-contact-icon {
    height: 1rem;
    width: 1rem;
}

/* Navigation */
.react-nav-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.react-desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .react-desktop-nav {
        display: flex;
    }
}

.react-nav-link {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
}

.react-nav-link:hover {
    color: #2563eb;
}

/* Mobile menu link styling */
@media (max-width: 1023px) {
    .react-mobile-menu .react-nav-link {
        padding: 0.75rem 1rem;
        text-align: left;
        border-bottom: 1px solid #f3f4f6;
        width: 100%;
        display: block;
    }
    
    .react-mobile-menu .react-nav-link:hover {
        background-color: #f9fafb;
        color: #2563eb;
    }
    
    .react-mobile-menu .react-appointment-btn {
        margin: 0.5rem 1rem;
        text-align: center;
    }
}

.react-appointment-btn {
    background-color: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Nunito Sans', sans-serif;
}

.react-appointment-btn:hover {
    opacity: 0.9;
}

/* Mobile Menu Button */
.react-mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.react-mobile-menu-btn:hover {
    background-color: #f3f4f6;
}

@media (min-width: 1024px) {
    .react-mobile-menu-btn {
        display: none;
    }
}

.react-mobile-menu-icon {
    height: 1.5rem;
    width: 1.5rem;
}

/* Mobile Menu */
.react-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 40;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.react-mobile-menu:not(.hidden) {
    display: flex;
}

@media (min-width: 1024px) {
    .react-mobile-menu {
        display: none !important;
    }
}

/* React-Style Footer */
.react-footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 3rem 0;
}

.react-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .react-footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .react-footer-container {
        padding: 0 2rem;
    }
}

.react-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .react-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 768px) {
    .react-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .react-footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.react-footer-practice {
    grid-column: span 1;
}

@media (min-width: 640px) {
    .react-footer-practice {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .react-footer-practice {
        grid-column: span 2;
    }
}

.react-footer-title {
    font-family: 'Acme', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.react-footer-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.react-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .react-footer-contact {
        gap: 0.75rem;
    }
}

.react-footer-contact-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.react-footer-contact-icon {
    height: 1rem;
    width: 1rem;
    margin-right: 0.75rem;
}

.react-footer-section-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.react-footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.react-footer-link {
    color: var(--text-light);
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
}

.react-footer-link:hover {
    color: white;
}

.react-footer-bottom {
    border-top: 1px solid #6b7280;
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .react-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.react-footer-bottom-left {
    text-align: center;
}

@media (min-width: 640px) {
    .react-footer-bottom-left {
        text-align: left;
    }
}

.react-footer-copyright {
    color: var(--text-light);
    font-size: 0.875rem;
}

.react-footer-attribution {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.react-footer-attribution-link {
    color: #9ca3af;
    text-decoration: underline;
    transition: color 0.2s;
}

.react-footer-attribution-link:hover {
    color: var(--text-light);
}

.react-footer-bottom-right {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .react-footer-bottom-right {
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
}

.react-footer-legal-link {
    color: var(--text-light);
    transition: color 0.2s;
    text-decoration: none;
}

.react-footer-legal-link:hover {
    color: white;
}

/* New form styling for contact form */
.lg\:col-span-2 {
    grid-column: span 2;
}

.bg-white {
    background-color: white;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.p-8 {
    padding: 2rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.border {
    border: 1px solid #e5e7eb;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-semibold {
    font-weight: 600;
}

.text-gray-800 {
    color: #1f2937;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.text-primary {
    color: #1274d9;
}

.mr-3 {
    margin-right: 0.75rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.grid {
    display: grid;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gap-6 {
    gap: 1.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.leading-none {
    line-height: 1;
}

.peer-disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}

.peer-disabled\:opacity-70:disabled {
    opacity: 0.7;
}

.h-10 {
    height: 2.5rem;
}

.w-full {
    width: 100%;
}

.rounded-md {
    border-radius: 0.375rem;
}

.border-input {
    border-color: #d1d5db;
}

.bg-background {
    background-color: white;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.ring-offset-background {
    --tw-ring-offset-color: white;
}

.file\:border-0:file {
    border: 0;
}

.file\:bg-transparent:file {
    background-color: transparent;
}

.file\:text-sm:file {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.file\:font-medium:file {
    font-weight: 500;
}

.file\:text-foreground:file {
    color: #111827;
}

.placeholder\:text-muted-foreground::placeholder {
    color: #6b7280;
}

.focus-visible\:outline-none:focus-visible {
    outline: none;
}

.focus-visible\:ring-2:focus-visible {
    --tw-ring-width: 2px;
}

.focus-visible\:ring-ring:focus-visible {
    --tw-ring-color: #1274d9;
}

.focus-visible\:ring-offset-2:focus-visible {
    --tw-ring-offset-width: 2px;
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

@media (min-width: 768px) {
    .md\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

.text-gray-600 {
    color: #4b5563;
}

.italic {
    font-style: italic;
}

.min-h-\[120px\] {
    min-height: 120px;
}

.flex-row {
    flex-direction: row;
}

.items-start {
    align-items: flex-start;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-y-0 > * + * {
    margin-top: 0;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.rounded {
    border-radius: 0.25rem;
}

.border-primary {
    border-color: #1274d9;
}

.font-normal {
    font-weight: 400;
}

.pt-4 {
    padding-top: 1rem;
}

.inline-flex {
    display: inline-flex;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.bg-primary {
    background-color: #1274d9;
}

.text-primary-foreground {
    color: white;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(18, 116, 217, 0.9);
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Additional styles for resources page */
.bg-background-alt {
    background-color: #f8fafc;
}

.text-neutral {
    color: #1f2937;
}

.text-primary {
    color: #000000;
}

.text-primary-hover:hover {
    color: #333333;
}

.font-acme {
    font-family: 'Acme', sans-serif;
}

.prose {
    color: #374151;
    max-width: none;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #1f2937;
    font-weight: 600;
    margin-top: 0;
}

.prose h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.prose h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.prose ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.prose li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.prose a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.2s;
}

.prose a:hover {
    color: #333333;
}

.prose hr {
    border-color: #d1d5db;
    margin: 2rem 0;
}

/* Mobile menu functionality */
.lg\:hidden {
    display: none;
}

@media (min-width: 1024px) {
    .lg\:hidden {
        display: none;
    }
}

@media (max-width: 1023px) {
    .lg\:flex {
        display: none;
    }
}

/* Mobile menu toggle */
.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

/* List indentation */
.list-disc {
    padding-left: 2rem !important;
}

.list-disc li {
    padding-left: 0.5rem;
    margin-left: 0.5rem;
}

/* Header and Footer responsive improvements */
@media (max-width: 768px) {
    .react-header-nav {
        padding: 0 1rem;
    }
    
    .react-logo-section {
        padding: 0.5rem 0;
    }
    
    .react-logo {
        height: 3.5rem;
    }
    
    .react-nav-section {
        padding: 0.75rem 0;
    }
    
    .react-appointment-btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 640px) {
    .react-header-nav {
        padding: 0 0.75rem;
    }
    
    .react-logo {
        height: 3rem;
    }
    
    .react-nav-section {
        padding: 0.5rem 0;
    }
    
    .react-appointment-btn {
        font-size: 0.8rem;
        padding: 0.375rem 0.5rem;
    }
    
    .react-footer {
        padding: 2rem 0;
    }
    
    .react-footer-title {
        font-size: 1.25rem;
    }
    
    .react-footer-description {
        font-size: 0.875rem;
    }
    
    .react-footer-section-title {
        font-size: 1rem;
    }
    
    .react-footer-links {
        gap: 0.5rem;
    }
    
    .react-footer-link {
        font-size: 0.875rem;
    }
    
    .react-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .react-footer-bottom-right {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .react-header-nav {
        padding: 0 0.5rem;
    }
    
    .react-logo {
        height: 2.5rem;
    }
    
    .react-mobile-menu-btn {
        padding: 0.25rem;
    }
    
    .react-mobile-menu-icon {
        height: 1.25rem;
        width: 1.25rem;
    }
    
    /* Contact info is already hidden on mobile via the 768px rule above */
    
    .react-appointment-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .react-footer {
        padding: 1.5rem 0;
    }
    
    .react-footer-title {
        font-size: 1.125rem;
    }
    
    .react-footer-description {
        font-size: 0.8rem;
    }
    
    .react-footer-section-title {
        font-size: 0.9rem;
    }
    
    .react-footer-link {
        font-size: 0.8rem;
    }
    
    .react-footer-bottom-right {
        font-size: 0.7rem;
    }
}

/* Resources page responsive adjustments */
@media (max-width: 1200px) {
    .resources-container {
        padding-left: 10rem !important;
        padding-right: 10rem !important;
    }
}

@media (max-width: 768px) {
    .resources-container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    .prose {
        font-size: 0.875rem;
    }
    
    .prose h2 {
        font-size: 1.25rem;
    }
    
    .prose h3 {
        font-size: 1.125rem;
    }
    
    .prose h4 {
        font-size: 1rem;
    }
    
    .prose ul {
        padding-left: 1.5rem;
    }
    
    .list-disc {
        padding-left: 1.5rem !important;
    }
    
    .list-disc li {
        padding-left: 0.25rem;
        margin-left: 0.25rem;
    }
}

@media (max-width: 480px) {
    .resources-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .prose {
        font-size: 0.8rem;
    }
    
    .prose h1 {
        font-size: 1.5rem;
    }
    
    .prose h2 {
        font-size: 1.125rem;
    }
    
    .prose h3 {
        font-size: 1rem;
    }
    
    .prose h4 {
        font-size: 0.9rem;
    }
    
    .prose ul {
        padding-left: 1rem;
    }
    
    .list-disc {
        padding-left: 1rem !important;
    }
    
    .emergency-contact-box {
        padding: 1rem !important;
    }
}

