.why-choose-hero {
    position: relative;
    padding: 6rem 2rem 5rem calc(50px + 2rem);
    background: linear-gradient(135deg, 
        rgba(74, 123, 140, 0.95), 
        rgba(245, 167, 167, 0.85)),
        url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&q=80') center/cover;
    text-align: center;
    color: white;
    overflow: hidden;
}

.why-choose-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

    .hero-content p {
        font-size: 1.4rem;
    }
}

.intro-section {
    padding: 4rem 2rem;
    background-color: white;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.reasons-section {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.reason-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.reason-card.reverse {
    flex-direction: row-reverse;
}

.reason-image {
    flex: 1;
    height: 400px;
    position: relative;
    overflow: hidden;
}

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

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

.reason-content {
    flex: 1;
    padding: 3rem;
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.reason-content h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.reason-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .reason-card {
        flex-direction: column;
        max-width: 800px;
        margin-bottom: 2rem;
    }

    .reason-card.reverse {
        flex-direction: column;
    }

    .reason-image {
        width: 100%;
        height: 300px;
    }

    .reason-content {
        padding: 2rem;
    }
}

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

    .hero-content p {
        font-size: 1.4rem;
    }

    .reason-image {
        height: 250px;
    }

    .reason-content h3 {
        font-size: 1.5rem;
    }

    .reason-content p {
        font-size: 1rem;
    }
} 