/* MEDNETCO - Maritime Medical Services Stylesheet - BROCHURE INSPIRED VERSION */

/* CRITICAL FIX: Add this at the very top to prevent image disappearing */
img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    max-width: 100%;
    height: auto;
}

/* Additional image fixes */
img[src] {
    display: block !important;
}

/* Force all images to be visible */
.logo-horizontal,
.doctor-image img,
.card-icon img,
.stat-icon img,
.service-icon img,
.doctor-avatar img,
.social-icon img,
.footer-logo {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override problematic fade-in animations */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Disable loading placeholder that hides images */
.loading-placeholder {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: #1f2937;
}

/* Header with Horizontal Logo */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-horizontal {
    height: 70px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #0891b2;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #0891b2;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-secondary {
    padding: 0.5rem 1rem;
    border: 2px solid #0891b2;
    background: transparent;
    color: #0891b2;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.2);
}

.btn-secondary:hover {
    background: #0891b2;
    color: white;
}

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

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #0891b2 25%, #06b6d4 50%, #8b5cf6 75%, #a855f7 100%);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/maritime-pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-hero.primary {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1e3a8a;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero.secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-hero.secondary:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-image {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #0891b2, #06b6d4, #8b5cf6);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.floating-card.card1 {
    top: 70%;
    left: 5%;
    animation-delay: 0s;
}

.floating-card.card2 {
    bottom: 80%;
    right: 15%;
    animation-delay: 1s;
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.emergency-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-red 3s infinite;
}

.emergency-indicator span {
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Stats Section - FIXED ALIGNMENT */
.stats {
    background: #ffffff;;
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-title {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 3rem;
    font-weight: 600;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    text-align: left;
    flex: 0 1 auto;
    width: 280px;
    min-height: 100px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(8, 145, 178, 0.3);
}

.stat-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.stat-item span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    white-space: nowrap;
    min-width: 120px;
}

/* Integration Section with Parallax Background */
.integration {
    position: relative;
    min-height: 400px;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 270%;
    background-image: url('assets/maritime-parallax-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 55, 72, 0.5);
    z-index: 2;
}

.integration-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.section-title1 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 25%, #f8fafc 50%, #f1f5f9 75%, #e2e8f0 100%);
    padding: 6rem 2rem;
}

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

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

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 145, 178, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(8, 145, 178, 0.2);
    border-color: rgba(8, 145, 178, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(8, 145, 178, 0.3);
}

.service-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Vision & Mission Section */
.vision-mission {
    background: #2d3748;
    padding: 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-mission-parallax-bg {
    position: absolute;
    top: 1000px;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: url('assets/vision-mission-bg.jpg');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
}

.vision-mission-parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 55, 72, 0.5);
    z-index: 6;
}

.vision-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.vision-mission-content {
    position: relative;
    z-index: 2;
}

.vision-mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
    letter-spacing: 1px;
}

.vision-mission-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.vision-section p,
.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    margin: 0;
    font-weight: normal;
}

.vision-mission-accent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teal-diamond {
    width: 200px;
    height: 400px;
    background: linear-gradient(135deg, #0891b2, #06b6d4, #8b5cf6);
    transform: skew(-20deg);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.3);
}
/* Logo Section */
.logo-section {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-section-image {
    height: 105px;
    width: auto;
    object-fit: contain;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo-section {
        padding: 2rem 1rem;
    }
    
    .logo-section-image {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .logo-section {
        padding: 1.5rem 1rem;
    }
    
    .logo-section-image {
        height: 60px;
    }
}
/* Specialities Section (formerly doctors) */
.doctors {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 25%, #f8fafc 50%, #f1f5f9 75%, #e2e8f0 100%);
    padding: 6rem 2rem;
}

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

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.doctor-card {
    background: linear-gradient(135deg, #0891b2, #06b6d4, #8b5cf6);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 145, 178, 0.2);
    transform: translateY(-10px);
}

.doctor-card:hover {
    background: white;
    color: #1f2937;
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: rgba(8, 145, 178, 0.05);
}

.doctor-card .doctor-name {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.doctor-card .doctor-specialty {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.doctor-card .doctor-avatar {
    background: rgba(255, 255, 255, 0.2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card .doctor-avatar img {
    filter: brightness(0) invert(1);
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.doctor-card:hover .doctor-name {
    color: #1f2937;
}
.doctor-card:hover .doctor-specialty {
    color: #6b7280;
}

.doctor-card:hover .doctor-avatar {
    background: #f3f4f6;
}

.doctor-card:hover .doctor-avatar img {
    filter: none;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #0891b2 25%, #06b6d4 50%, #8b5cf6 75%, #a855f7 100%);
    padding: 6rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/maritime-pattern-white.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

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

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    background: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Stats Numbers */
.stats-numbers {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 4rem 2rem;
}

.stats-numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0891b2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0891b2, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer with Horizontal Logo */
.footer {
    background: #2d3748;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.contact-info strong {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(8, 145, 178, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 145, 178, 0.3);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #06b6d4;
}

.footer-bottom {
    border-top: 1px solid rgba(49, 48, 48, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #06b6d4;
}

.contact-link {
    color: #d1d5db !important;
    text-decoration: none !important;
}

.contact-link:hover {
    color: #d1d5db !important;
    text-decoration: none !important;
}

.contact-link:visited {
    color: #d1d5db !important;
    text-decoration: none !important;
}

.contact-link:active {
    color: #d1d5db !important;
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /* ADD THE PARALLAX FIX HERE - INSIDE THE EXISTING SECTION */
    .parallax-bg,
    .vision-mission-parallax-bg {
        display: none !important;
    }
    
    .integration {
        background: #2d3748 !important;
    }
    
    .vision-mission {
        background: #2d3748 !important;
    }

   
    .logo-horizontal {
        height: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .doctor-image {
        width: 300px;
        height: 400px;
    }

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

    .doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .vision-mission-title {
        font-size: 2rem;
    }

    .teal-diamond {
        width: 100px;
        height: 200px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .stats-numbers-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
        min-height: 100px;
        padding: 1rem;
    }

    .stat-item span {
        font-size: 1rem;
        min-width: 100px;
    }

    .parallax-bg,
    .vision-mission-parallax-bg,
    .vision-mission {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .doctor-image {
        width: 250px;
        height: 350px;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-hero {
        width: 100%;
    }

    .stats-numbers-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .vision-mission-title {
        font-size: 1.5rem;
    }

    .vision-section p,
    .mission-section p {
        font-size: 1rem;
    }

    .stat-item span {
        white-space: normal;
        text-align: center;
    }
}