.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/static/images/futuristic-healthcare.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 24px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section:nth-child(odd) {
    background-color: var(--off-white);
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    line-height: 1.6;
    color: var(--text-light);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.stat-box:hover .stat-number {
    color: #1E75FF;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.dual-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.dual-content > div {
    flex: 1;
}

.quote-block {
    background-color: var(--primary-color);
    padding: 40px;
    color: white;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
}

.quote-block p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-block cite {
    font-size: 18px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin: 10px;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    width: 70%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Dual content hover effects */
.dual-content img {
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.dual-content img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .dual-content {
        flex-direction: column;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 20px;
    }
    
    .modal-content {
        width: 90%;
        padding: 20px;
    }
} 