body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}
/* Enquiry Form Styles */
.enquiry-section {
    padding: 60px 0;
}

.enquiry-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.enquiry-form h2 {
    color: #0066cc;
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}

.form-control, .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    background: white;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
    border-color: #0066cc;
}

.verify-btn {
    background: #0066cc;
    border: none;
    padding: 12px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.verify-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .center-card {
        margin-bottom: 30px;
    }

    .center-image {
        height: 200px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }

    .enquiry-form {
        padding: 20px;
    }

    .enquiry-form h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

    .location-tag {
        font-size: 14px;
        padding: 6px 15px;
    }

    .center-details {
        padding: 15px !important;
    }

    .enquiry-section {
        padding: 40px 0;
    }
}