.quick-actions {
    margin-bottom: 30px;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    background: #3a3f57;
    border: 2px solid #3a3f57;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #aebbe8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.action-btn:hover {
    background: #4a4f67;
    border-color: #6c7ae0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 122, 224, 0.3);
}

.action-btn i {
    width: 40px;
    height: 40px;
    background: rgba(108, 122, 224, 0.1);
    color: #6c7ae0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.action-btn:hover i {
    background: rgba(108, 122, 224, 0.2);
    transform: scale(1.1);
}

.action-btn span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.fairness-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.info-card {
    text-align: center;
}

.info-header {
    margin-bottom: 20px;
}

.info-header i {
    font-size: 48px;
    color: #4caf50;
    margin-bottom: 15px;
}

.info-header h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-content p {
    color: #aebbe8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.info-content li {
    color: #aebbe8;
    font-size: 14px;
    padding: 10px 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    border-left: 3px solid #4caf50;
    display: flex;
    align-items: center;
}

.info-content li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .action-btn {
        padding: 15px;
    }
    
    .action-btn i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .action-btn span {
        font-size: 14px;
    }
    
    .info-content ul {
        grid-template-columns: 1fr;
    }
    
    .fairness-info {
        padding: 20px;
    }
}
