/* Active Medical USA - Website Styles */
/* Professional Medical Industry Design */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    background-color: #F5F5F5;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #007AC3;
}

h2 {
    font-size: 2rem;
    color: #333333;
}

h3 {
    font-size: 1.5rem;
    color: #333333;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: #007AC3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #005A8C;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

/* Logo Section */
.header-logo-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #DDDDDD;
}

.logo-container {
    text-align: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007AC3;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Navigation Styles */
.main-navigation {
    background-color: #FFFFFF;
    padding: 0.75rem 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333333;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover,
.nav-item.current-page .nav-link {
    color: #007AC3;
    text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 0.25rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    background-color: #FFFFFF;
    border-top: 1px solid #DDDDDD;
    padding: 1rem 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    text-align: center;
    padding: 0.5rem 0;
}

.mobile-nav-link {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block;
    padding: 0.75rem;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #007AC3;
    background-color: #F5F5F5;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 122, 195, 0.1);
}

/* Company Description Section */
.company-description {
    background-color: #FFFFFF;
    padding: 3rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.description-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.description-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333333;
}

/* Historical Notice */
.historical-notice {
    padding: 1.5rem 0;
    background-color: #FFF3CD;
    border-top: 3px solid #FFBF47;
    border-bottom: 1px solid #DDDDDD;
}

.notice-content {
    text-align: center;
}

.notice-text {
    margin: 0;
    color: #8A6D3B;
    font-size: 0.95rem;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background-color: #F5F5F5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    background-color: #007AC3;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.service-link:hover {
    background-color: #005A8C;
    transform: translateY(-2px);
    text-decoration: none;
    color: #FFFFFF;
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 90, 140, 0.7);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.content-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666666;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007AC3;
    margin-bottom: 2rem;
    text-align: center;
}

/* Info Cards */
.info-cards-section {
    padding: 2rem 0;
    background-color: #F8F9FA;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #007AC3;
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Product Layouts */
.products-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.products-section.maternity-support {
    background-color: #F8F9FA;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007AC3;
    margin-bottom: 0.5rem;
}

.product-warranty {
    display: inline-block;
    background-color: #28a745;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 3rem 0;
    background-color: #007AC3;
    color: #FFFFFF;
    text-align: center;
}

.contact-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.contact-cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-cta-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-cta-info a {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: none;
}

.contact-cta-info a:hover {
    text-decoration: underline;
}

/* About Page Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-main h2,
.content-main h3 {
    color: #007AC3;
}

.subsection-title {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007AC3;
    font-weight: 700;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: #F8F9FA;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #007AC3;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #007AC3;
    margin-bottom: 1rem;
}

.company-facts,
.service-areas {
    list-style: none;
    padding: 0;
}

.company-facts li,
.service-areas li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666666;
}

/* Partnership Section */
.partnership-section {
    padding: 3rem 0;
    background-color: #F8F9FA;
}

.partnership-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.partnership-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Legacy Section */
.legacy-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.legacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legacy-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2rem;
}

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007AC3;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: #F8F9FA;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #007AC3;
}

.contact-card.primary-contact {
    background-color: #007AC3;
    color: #FFFFFF;
}

.contact-card.primary-contact .contact-title {
    color: #FFFFFF;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007AC3;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.contact-text {
    flex: 1;
}

.contact-text a {
    color: inherit;
    font-weight: 700;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #DDDDDD;
}

.day {
    font-weight: 600;
    color: #333333;
}

.time {
    color: #666666;
}

/* Contact Form */
.contact-form-section {
    padding: 3rem 0;
    background-color: #F8F9FA;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007AC3;
    box-shadow: 0 0 0 3px rgba(0, 122, 195, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666666;
}

.form-checkbox {
    margin-top: 0.25rem;
}

.form-submit {
    background-color: #007AC3;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit:hover {
    background-color: #005A8C;
    transform: translateY(-1px);
}

/* Additional Info Section */
.additional-info-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Styles */
.site-footer {
    background-color: #005A8C;
    color: #FFFFFF;
    margin-top: 3rem;
}

.footer-logo-section {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-width: 200px;
    margin: 0 auto;
}

.footer-contact-section {
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    margin: 0;
    font-size: 1rem;
}

.contact-info a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

.footer-copyright-section {
    padding: 1rem 0;
    text-align: center;
}

.copyright-info p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .container {
        max-width: 970px;
    }
}

@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 750px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .content-grid,
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .legacy-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Hide desktop navigation */
    .nav-menu {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .page-hero {
        height: 300px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    /* Logo adjustments */
    .logo-text {
        font-size: 2rem;
    }
    
    /* Hero section adjustments */
    .hero-section {
        height: 300px;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    /* Padding adjustments */
    .company-description {
        padding: 2rem 0;
    }
    
    .services-section {
        padding: 2rem 0;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .hero-section {
        height: 250px;
    }
    
    .description-content p {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .service-link {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Mobile Navigation Active State */
.mobile-navigation.active {
    display: block;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.mobile-nav-link:focus,
.service-link:focus,
.logo-link:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #007AC3;
    outline-offset: 2px;
}

/* Page-specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #007AC3 0%, #005A8C 100%);
    color: #FFFFFF;
    padding: 3rem 0;
    text-align: center;
}

.page-header-content h1 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

/* Provider/Patient Hero Sections */
.provider-hero,
.patient-hero {
    background-color: #FFFFFF;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.provider-hero-content,
.patient-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-text h2 {
    color: #007AC3;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333333;
}

/* Services/Benefits Grid */
.provider-services,
.patient-benefits {
    background-color: #F5F5F5;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    color: #333333;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.services-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item,
.benefit-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover,
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-icon,
.benefit-icon {
    margin-bottom: 1.5rem;
}

.icon-placeholder {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-item h3,
.benefit-item h3 {
    color: #007AC3;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-item p,
.benefit-item p {
    color: #666666;
    margin: 0;
}

/* Partnership Information */
.partnership-info {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partnership-content h2 {
    color: #007AC3;
    margin-bottom: 2rem;
}

.partnership-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.partnership-benefits {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: left;
}

.partnership-benefits h3 {
    color: #333333;
    margin-bottom: 1rem;
}

.partnership-benefits ul {
    list-style: none;
    padding: 0;
}

.partnership-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.partnership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007AC3;
    font-weight: bold;
}

/* Equipment Types */
.equipment-types {
    background-color: #F5F5F5;
    padding: 4rem 0;
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.equipment-category {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.equipment-category h3 {
    color: #007AC3;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.equipment-category ul {
    list-style: none;
    padding: 0;
}

.equipment-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333333;
}

.equipment-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007AC3;
    font-weight: bold;
}

/* Insurance Information */
.insurance-info {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.insurance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.insurance-content h2 {
    text-align: center;
    color: #007AC3;
    margin-bottom: 2rem;
}

.insurance-content > p {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.insurance-providers h3 {
    color: #333333;
    margin-bottom: 2rem;
    text-align: center;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.insurance-item {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.insurance-item h4 {
    color: #007AC3;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.insurance-item p {
    color: #666666;
    margin: 0;
    font-size: 0.9rem;
}

.insurance-note {
    background-color: #E8F4FD;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007AC3;
}

.insurance-note p {
    margin: 0;
    color: #333333;
}

/* Contact CTA Section */
.contact-cta,
.patient-contact {
    background: linear-gradient(135deg, #007AC3 0%, #005A8C 100%);
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.cta-content,
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2,
.contact-content h2 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.cta-content p,
.contact-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #FFFFFF;
    color: #007AC3;
}

.cta-button.primary:hover {
    background-color: #F5F5F5;
    transform: translateY(-2px);
    text-decoration: none;
    color: #005A8C;
}

.cta-button.secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-button.secondary:hover {
    background-color: #FFFFFF;
    color: #007AC3;
    text-decoration: none;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-method {
    text-align: center;
}

.contact-method h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

.hours {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design for New Pages */
@media (max-width: 991px) {
    .provider-hero-content,
    .patient-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .provider-hero,
    .patient-hero {
        padding: 3rem 0;
    }
    
    .provider-services,
    .patient-benefits,
    .equipment-types {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .service-item,
    .benefit-item,
    .equipment-category {
        padding: 1.5rem;
    }
    
    .icon-placeholder {
        font-size: 2.5rem;
    }
    
    .partnership-benefits {
        padding: 1.5rem;
    }
    
    .insurance-item {
        padding: 1.5rem;
    }
}

/* Print styles */
@media print {
    .mobile-menu-toggle,
    .mobile-navigation {
        display: none;
    }
    
    .hero-section {
        height: auto;
        padding: 2rem 0;
        background: #F5F5F5;
    }
    
    .hero-background {
        display: none;
    }
    
    a {
        color: #333333;
        text-decoration: underline;
    }
}
