/* ========================================
   ABOUT PAGE STYLES - CLEAN & EFFICIENT
   ======================================== */

/* Essential CSS Variables */
:root {
    --header-height: 80px;
    --transition-normal: 0.3s ease;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Medical theme colors */
    --medical-blue: #3b82f6;
    --medical-dark: #1e40af;
    --primary-blue: #2563eb;
    --text-gray-600: #4b5563;
    --text-gray-800: #1f2937;
    --text-gray-900: #111827;
    --bg-yellow-600: #d97706;
    --bg-yellow-700: #b45309;
}

/* Dark mode support */
html.dark {
    --text-gray-600: #9ca3af;
    --text-gray-800: #e5e7eb;
    --text-gray-900: #ffffff;
    --bg-yellow-600: #f59e0b;
    --bg-yellow-700: #d97706;
}

/* ========================================
   HERO SECTION
   ======================================== */

.navimed-about-hero-section {
    min-height: 45vh;
    padding: 3rem 0;
    margin-top: var(--header-height);
    background: linear-gradient(135deg, var(--medical-blue), var(--primary-blue));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

html.dark .navimed-about-hero-section {
    background: linear-gradient(135deg, var(--medical-dark), var(--medical-blue));
}

.navimed-about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.navimed-about-hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: navimed-about-fadeInUp 1s ease-out 0.3s both;
}

.navimed-about-hero-subtitle {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: navimed-about-fadeInUp 1s ease-out 0.6s both;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.navimed-about-main-content {
    padding: 6rem 0;
    background: white;
    position: relative;
}

html.dark .navimed-about-main-content {
    background: #111827;
}

.navimed-about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navimed-about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.navimed-about-text-content {
    animation: navimed-about-fadeInUp 1s ease-out 0.9s both;
}

.navimed-about-content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-gray-900);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--medical-blue), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navimed-about-content-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray-600);
    margin-bottom: 1.5rem;
    animation: navimed-about-fadeInUp 1s ease-out 1.1s both;
}

.navimed-about-content-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-gray-800);
    margin: 2rem 0 1rem 0;
    animation: navimed-about-fadeInUp 1s ease-out 1.2s both;
}

.navimed-about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: navimed-about-fadeInUp 1s ease-out 1.3s both;
}

.navimed-about-feature-item {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-gray-600);
    line-height: 1.6;

    cursor: pointer;
}

.navimed-about-feature-item:hover {
    color: var(--medical-blue);
    transition: none !important;
}

.navimed-about-feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--medical-blue);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;

}

.navimed-about-feature-item:hover::before {
    color: var(--medical-dark);
    transform: scale(1.2);
    transition: none !important;
}

/* ========================================
   SETUP SECTION
   ======================================== */

.navimed-about-setup-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-yellow-600), var(--bg-yellow-700));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.navimed-about-setup-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.navimed-about-setup-content {
    animation: navimed-about-fadeInUp 1s ease-out 0.3s both;
}

.navimed-about-setup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: navimed-about-bounceIn 1s ease-out 0.6s both;
}

.navimed-about-setup-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.navimed-about-setup-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navimed-about-setup-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.navimed-about-setup-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--bg-yellow-700);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    animation: navimed-about-fadeInUp 1s ease-out 0.9s both;
}

.navimed-about-setup-button:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--bg-yellow-600), var(--bg-yellow-700));
}

/* ========================================
   STATS CARDS
   ======================================== */

.navimed-about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
    animation: navimed-about-slideInLeft 1s ease-out 1.2s both;
    position: absolute;
    right: -5rem;
    top: -1.5rem;
    z-index: 10;
}

.navimed-about-stat-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    border: none;
    transition: all var(--transition-normal);
    min-width: 10rem;
    max-width: 10rem;
    width: 10rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

html.dark .navimed-about-stat-item {
    background: #1f2937;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.navimed-about-stat-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
}

.navimed-about-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--medical-blue);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--medical-blue), var(--medical-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navimed-about-stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   IMAGE SECTION
   ======================================== */

.navimed-about-image-section {
    text-align: center;
    animation: navimed-about-slideInRight 1s ease-out 0.6s both;
    position: relative;
}

.navimed-about-image-3d-container {
    position: relative;
    display: inline-block;
}

.navimed-about-3d-blue-box {
    position: absolute;
    top: -1rem;
    left: 1rem;
    right: 1rem;
    height: 92%;
    width: 70%;
    background: linear-gradient(135deg, var(--medical-blue), var(--primary-blue));
    border-radius: var(--border-radius-xl);
    z-index: 1;
    transform: none;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.8);
    transition: all var(--transition-normal);
}

html.dark .navimed-about-3d-blue-box {
    background: linear-gradient(135deg, var(--medical-blue), var(--medical-dark));
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

.navimed-about-hero-image {
    max-width: 50%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: none;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.navimed-about-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.navimed-about-hero-image:hover::before {
    left: 100%;
}

.navimed-about-hero-image:hover {
    transform: translateY(-0.25rem) scale(1.01);
    box-shadow: none;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.our-services {
    padding: 6rem 0;
    background: white;
    position: relative;
}

html.dark .our-services {
    background: #111827;
}

.our-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.our-services h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-gray-900);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--medical-blue), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: navimed-about-fadeInUp 1s ease-out 0.3s both;
}

html.dark .our-services h2 {
    color: #f9fafb;
}

.services-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.service-overview-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(59, 130, 246, 0.1);
    animation: navimed-about-fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

html.dark .service-overview-card {
    background: #1f2937;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--medical-blue), var(--primary-blue));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-overview-card:hover::before {
    transform: scaleX(1);
}

.service-overview-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

html.dark .service-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
}

.service-overview-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    transform: scale(1.1);
}

html.dark .service-overview-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.3));
}

.service-icon i {
    font-size: 2rem;
    color: var(--medical-blue);
    transition: all var(--transition-normal);
}

.service-overview-card:hover .service-icon i {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.service-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray-900);
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

html.dark .service-overview-card h3 {
    color: #f9fafb;
}

.service-overview-card:hover h3 {
    color: var(--medical-blue);
}

.service-overview-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray-600);
    margin: 0;
    transition: color var(--transition-normal);
}

html.dark .service-overview-card p {
    color: #d1d5db;
}

.service-overview-card:hover p {
    color: var(--text-gray-800);
}

html.dark .service-overview-card:hover p {
    color: #e5e7eb;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .our-services {
        padding: 4rem 0;
    }
    
    .our-services .container {
        padding: 0 1rem;
    }
    
    .our-services h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    .services-overview {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .service-overview-card {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .our-services {
        padding: 4rem 0;
    }
    
    .our-services .container {
        padding: 0 1rem;
    }
    
    .our-services h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    .services-overview {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .service-overview-card {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 375px) {
    .our-services h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-overview {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .service-overview-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .navimed-about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .navimed-about-stats {
        right: -4rem;
        gap: 1rem;
        top: -1.5rem;
    }
    
    .navimed-about-stat-item {
        padding: 1.75rem;
        min-width: 8rem;
        max-width: 8rem;
        width: 8rem;
    }
    
    .navimed-about-stat-number {
        font-size: 1.75rem;
    }
    
    .navimed-about-stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .navimed-about-hero-section {
        min-height: 40vh;
        padding: 2rem 0;
    }
    
    .navimed-about-hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .navimed-about-hero-subtitle {
        font-size: clamp(1.125rem, 3vw, 1.5rem);
    }
    
    .navimed-about-main-content {
        padding: 4rem 0;
    }
    
    .navimed-about-content-container {
        padding: 0 1.5rem;
    }
    
    .navimed-about-stats {
        right: -4rem;
        gap: 0.75rem;
        top: -1.5rem;
    }
    
    .navimed-about-stat-item {
        padding: 1.5rem;
        min-width: 8rem;
        max-width: 8rem;
        width: 8rem;
    }
    
    .navimed-about-stat-number {
        font-size: 1.5rem;
    }
    
    .navimed-about-stat-label {
        font-size: 0.65rem;
    }
    
    .navimed-about-setup-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .navimed-about-hero-section {
        min-height: 35vh;
        padding: 1.5rem 0;
    }
    
    .navimed-about-hero-container {
        padding: 0 1rem;
    }
    
    .navimed-about-content-container {
        padding: 0 1rem;
    }
    
    .navimed-about-setup-container {
        padding: 0 1rem;
    }
    
    .navimed-about-stats {
        right: -3.5rem;
        gap: 0.5rem;
        top: -1.5rem;
    }
    
    .navimed-about-stat-item {
        padding: 1.25rem;
        min-width: 7rem;
        max-width: 7rem;
        width: 7rem;
    }
    
    .navimed-about-stat-number {
        font-size: 1.25rem;
    }
    
    .navimed-about-stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 375px) {
    .navimed-about-stats {
        right: -3rem;
        gap: 0.25rem;
        top: -1.5rem;
    }
    
    .navimed-about-stat-item {
        padding: 1rem;
        min-width: 6rem;
        max-width: 6rem;
        width: 6rem;
    }
    
    .navimed-about-stat-number {
        font-size: 1rem;
    }
    
    .navimed-about-stat-label {
        font-size: 0.55rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes navimed-about-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navimed-about-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes navimed-about-slideInRight {
    from {
        opacity: 0;
        transform: translateX(2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes navimed-about-checkmarkPop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(-45deg);
    }
    100% {
        transform: scale(1) rotate(-45deg);
        opacity: 1;
    }
}

@keyframes navimed-about-bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   NAVIENT PARTNERSHIP SECTION
   ======================================== */

.navient-partnership {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

html.dark .navient-partnership {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.navient-partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

html.dark .navient-partnership::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23475569" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.navient-partnership .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.partnership-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--medical-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

html.dark .partnership-text h2 {
    color: var(--medical-light);
}

.partnership-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--medical-blue), var(--primary-blue));
    border-radius: 2px;
}

html.dark .partnership-text h2::after {
    background: linear-gradient(90deg, var(--medical-light), var(--medical-blue));
}

.partnership-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-gray-700);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

html.dark .partnership-text p {
    color: var(--text-gray-200);
}

.partnership-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
}

html.dark .feature-item {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.2);
}

html.dark .feature-item:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(59, 130, 246, 0.4);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--medical-blue);
    background: linear-gradient(135deg, var(--medical-blue), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

html.dark .feature-item i {
    background: linear-gradient(135deg, var(--medical-light), var(--medical-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray-800);
    line-height: 1.5;
}

html.dark .feature-item span {
    color: var(--text-gray-200);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navient-partnership {
        padding: 4rem 0;
    }
    
    .navient-partnership .container {
        padding: 0 1.5rem;
    }
    
    .partnership-content {
        gap: 2rem;
    }
    
    .partnership-text h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .partnership-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .partnership-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem 1.25rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .navient-partnership {
        padding: 3rem 0;
    }
    
    .navient-partnership .container {
        padding: 0 1rem;
    }
    
    .partnership-text h2 {
        font-size: 1.75rem;
    }
    
    .partnership-text p {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .feature-item i {
        font-size: 1.125rem;
        width: 20px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

/* Animation for feature items */
.feature-item {
    animation: fadeInUp 0.6s ease-out both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced hover effects */
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(37, 99, 235, 0.05));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

html.dark .feature-item::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
}

.feature-item:hover::before {
    opacity: 1;
}

/* Focus states for accessibility */
.feature-item:focus-within {
    outline: 2px solid var(--medical-blue);
    outline-offset: 2px;
}

html.dark .feature-item:focus-within {
    outline-color: var(--medical-light);
}

/* ========================================
   CONTACT CTA SECTION - CALL TO ACTION
   ======================================== */

.about-cta {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--medical-blue), var(--primary-blue));
    text-align: center;
    overflow: hidden;
}

html.dark .about-cta {
    background: linear-gradient(135deg, var(--medical-dark), var(--medical-blue));
}

/* Background pattern overlay */
.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 65%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.about-cta h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: about-cta-fadeInUp 1s ease-out 0.3s both;
}

.about-cta p {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: about-cta-fadeInUp 1s ease-out 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: about-cta-fadeInUp 1s ease-out 0.9s both;
}

/* Enhanced animated button styles */
.about-cta .animated-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    justify-content: center;
}

/* Primary button styling */
.about-cta .btn-primary {
    background: white;
    color: var(--medical-blue);
    border: 2px solid white;
}

.about-cta .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
}

/* Secondary button styling */
.about-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.about-cta .btn-secondary:hover {
    background: white;
    color: var(--medical-blue);
    border-color: white;
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
}

/* Button text and icon positioning */
.about-cta .animated-button .text {
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.about-cta .animated-button svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
    fill: currentColor;
}

.about-cta .animated-button .arr-1 {
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.about-cta .animated-button .arr-2 {
    opacity: 1;
    transform: translateX(0);
    transition: all var(--transition-normal);
}

/* Hover effects for arrows */
.about-cta .animated-button:hover .arr-1 {
    opacity: 1;
    transform: translateX(0);
}

.about-cta .animated-button:hover .arr-2 {
    opacity: 0;
    transform: translateX(10px);
}

/* Circle background effect */
.about-cta .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.about-cta .animated-button:hover .circle {
    width: 300px;
    height: 300px;
}

/* Focus states for accessibility */
.about-cta .animated-button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-cta {
        padding: 4rem 0;
    }
    
    .about-cta h2 {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .about-cta p {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-cta .animated-button {
        width: 100%;
        max-width: 280px;
        padding: 1.125rem 2rem;
    }
}

@media (max-width: 480px) {
    .about-cta {
        padding: 3rem 0;
    }
    
    .about-cta .container {
        padding: 0 1.5rem;
    }
    
    .about-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-cta .animated-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: 160px;
    }
}

/* Animations */
@keyframes about-cta-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced hover animations */
.about-cta .animated-button {
    animation: about-cta-buttonFloat 0.6s ease-out 1.2s both;
}

@keyframes about-cta-buttonFloat {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Dark mode specific enhancements */
html.dark .about-cta::before {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 65%),
        radial-gradient(circle at 50% 50%, rgba(147, 197, 253, 0.1) 0%, transparent 70%);
}

html.dark .about-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.9);
}

html.dark .about-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--medical-dark);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .about-cta .animated-button {
        border-width: 3px;
    }
    
    .about-cta .btn-primary {
        background: white;
        color: #000;
    }
    
    .about-cta .btn-secondary {
        background: transparent;
        color: white;
        border-color: white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .about-cta .animated-button,
    .about-cta .animated-button svg,
    .about-cta .animated-button .circle {
        transition: none;
        animation: none;
    }
    
    .about-cta .animated-button:hover {
        transform: none;
    }
    
    .about-cta .animated-button:hover .arr-1,
    .about-cta .animated-button:hover .arr-2 {
        transform: none;
        opacity: 1;
    }
}
