.reservation-section{
    padding: 60px 0;
    background-color: white;
}

.reservation-form {
    background: white !important;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-hoppa {
    background: var(--hoppa-green);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    width: 100%;
}

.btn-hoppa:hover {
    background: #008a85;
    color: white;
}

.form-label {
    font-weight: 500;
    color: var(--hoppa-dark);
}

.form-control:focus {
    border-color: var(--hoppa-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 161, 156, 0.25);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--hoppa-dark);
}

.section-title p {
    color: #666;
    font-size: 18px;
}



.return-date-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--hoppa-dark);
}

.return-date-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}