/*
 Theme Name:   Astra Child
 Theme URI:    https://wpastra.com/
 Description:  A simple child theme for Astra.
 Author:       Your Name
 Author URI:   https://yourwebsite.com/
 Template:     astra
 Version:      1.0.0
*/
.enquiry-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.enquiry-left {
    flex: 1;
    min-width: 300px;
    margin-top: 30px;
    width: 70%
}
.enquiry-right {
    min-width: 300px;
    padding: 30px;
    width: 30%;
}
.enquiry-status {
    background: #888;
    color: #fff;
    padding: 5px 20px;
    display: inline-block;
    font-size: 14px;
    min-width: 100px;
    text-align: center;
}
.enquiry-field {
    margin-bottom: 1rem;
}
.contact-btn {
    display: inline-block;
    padding: 8px 32px;
    border: 2px solid #000;
    border-radius: 5px;
    text-decoration: none;
}
.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
label {
    font-size: 12px;
}
.enquiry-value {
    color: #000000;
}
@media (max-width: 768px) {
    .enquiry-container {
        flex-direction: column;
    }
    .enquiry-left, .enquiry-right {
        width: 100%;
    }
}