.reasons-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.reasons-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.reasons-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}
.reason-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(122, 122, 169, 0.1);
}
.reason-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(122, 122, 169, 0.15);
}
.reason-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.reason-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.reason-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}
.reason-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}
.reason-highlight h3 {
    color: var(--white);
    margin-bottom: 1rem;
}
.reason-highlight p {
    color: rgba(255, 255, 255, 0.9);
}
.cta-box {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
}
.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}
.quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}