/* Advantages Section Styles for HanuPayout */

.advantages-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.advantages-header {
    text-align: center;
    margin-bottom: 60px;
}

.advantages-subtitle {
    color: #4A6CF7;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.advantages-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1D2144;
}

.advantages-title .text-gradient {
    background: linear-gradient(to right, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantages-description {
    font-size: 16px;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 28px;
    color: white;
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: #1D2144;
    margin-bottom: 15px;
}

.advantage-description {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: #4A6CF7;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Second Row */
.advantages-grid-row2 {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-title {
        font-size: 26px;
    }
    
    .advantage-card {
        padding: 25px;
    }
}
