.survey-section {
    background: linear-gradient(to right, #fefefe, #eef8ff);
    padding: 70px 20px;
    text-align: center;
}

.survey-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
    color: #002B5C;
    margin-bottom: 20px;
    font-weight: 700;
}

.survey-section p.description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.survey-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.survey-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    max-width: 300px;
    flex: 1;
    transition: transform 0.3s ease;
}

.survey-card:hover {
    transform: translateY(-5px);
}

.survey-icon {
    font-size: 40px;
    color: #138808;
    margin-bottom: 15px;
}

.survey-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 10px;
    color: #111;
}

.survey-desc {
    font-size: 14px;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.survey-cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.survey-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    background-color: #138808;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.survey-btn.secondary {
    background-color: #002b5c;
}

.survey-btn:hover {
    opacity: 0.9;
}


/* Responsive */
@media (max-width: 768px) {
    .survey-section h2 {
        font-size: 26px;
    }

    .survey-card {
        max-width: 100%;
    }
}
