/* Benefits Section Styles */
#benefits {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.benefits-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-container {
    position: relative;
    z-index: 2;
}

.benefits-subtitle {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.benefit-card {
    background-color: rgba(53, 9, 115, 0.4);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-line {
    display: inline-block;
    width: 3px;
    height: 20px;
    background: linear-gradient(90deg, #4D0DA6, #6446A6);
    margin-right: 10px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.benefit-card p {
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.6;
}

.benefits-action {
    text-align: center;
    margin-top: 30px;
}

.benefits-decoration {
    position: absolute;
    z-index: 1;
}

.benefits-decoration.left-planet {
    left: 0;
    bottom: 0;
    width: 300px;
}

.benefits-decoration.right-planet {
    right: 0;
    top: 50px;
    width: 300px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 30px;
    }
    
    .benefits-decoration {
        width: 200px;
    }
}

@media screen and (max-width: 576px) {
    .benefits-title {
        font-size: 26px;
    }
    
    .benefits-subtitle {
        font-size: 24px;
    }
    
    .benefit-card {
        padding: 20px;
    }
} 