﻿.hero-section {
    background: #e7ecf0;
    color: black;
    padding: 80px 0;
    text-align: center;
}

.form-container {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: -50px;
    position: relative;
}

.rating {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

    .rating input {
        display: none;
    }

    .rating label {
        cursor: pointer;
        font-size: 30px;
        color: #ddd;
        margin: 0 5px;
        transition: color 0.2s;
    }

        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffc107;
        }

.btn-submit {
    background: linear-gradient(#000);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s;
}

    .btn-submit:hover {
        transform: translateY(-3px);
    }

.feature-icon {
    font-size: 40px;
    color: #000;
    margin-bottom: 15px;
}

.testimonial-card {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin: 15px 0;
    transition: transform 0.3s;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
    }
