body {
    color: #333;
    overflow-x: hidden;
}

.benefits-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.benefits-container {
    max-width: 700px;
    margin: 0 auto;
}

.benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #232323;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E09200, #F5A623);
    border-radius: 2px;
}

.benefits-grid {
    margin-top: 4rem;
}

.benefits-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.benefits-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(224, 146, 0, 0.1);
}


.benefits-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.benefits-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #232323;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.benefits-features {
    list-style: none;
    margin-bottom: 3rem;
}

.benefits-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
}

.benefits-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E09200;
    font-weight: bold;
    font-size: 1.5rem;
    top: 0.5rem;
}

.benefits-features li strong {
    color: #E09200;
}

.benefits-cta {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #E09200, #F5A623);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(224, 146, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.benefits-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(224, 146, 0, 0.4);
}

.benefits-cta::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: 0.6s;
}

.benefits-cta:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-card.featured {
        transform: scale(1);
    }
    
    .benefits-card.featured:hover {
        transform: scale(1) translateY(-15px);
    }
}