.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.testimonial-card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.info-box {
    background-color: #0d6efd;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.questionnaire-section {
    margin-top: 30px;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
}

.btn-custom {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-custom:hover {
    background-color: #004bb7;
}