.site-navbar {
    margin-top: -64px;

}



.enquiry-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
    margin-bottom: 30px;
}

.enquiry-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.btn-submit {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #218838;
}

label {
    font-weight: bold;
}

.enquiry-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    transition: all 0.3s ease;
    /* Smooth transition for hover effect */
}

/* Hover effect for h2 */
.enquiry-box h2:hover {
    color: #28a745;
    /* Change text color to green */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    /* Add subtle shadow to text */
}




body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.spacer {
    height: 2000px;
    /* Makes page scrollable for testing */
}