.choice-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.choice-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.choice-card {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.choice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.choice-card i {
    font-size: 64px;
    color: #007bff;
    margin-bottom: 20px;
}

.choice-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.btn-choice {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #007bff;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}

.choice-footer {
    margin-top: 40px;
}
