.inquiry-section {
    background: #ffffff;       /* same as contact page */
    padding: 0px 60px;
    margin-top: -100px;     
    font-family: 'Montserrat', sans-serif;
}

.inquiry-container {
    max-width: 1900px;
    margin: auto;
}

.inquiry-container h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
}

.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 20px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1.5px solid #bbb;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border: 1px solid black;
}

textarea {
    resize: none;
}

/* Privacy Text */

.privacy-section {
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.8;
}

.radio-group {
    margin-top: 20px;
    display: flex;
    gap: 30px;
}

.send-btn {
    padding: 14px 36px;
    background: transparent;
    border: 3px solid black;
    margin-bottom: 40px;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-btn:hover {
    background: #0a4049;
    color: white;
}

@media (max-width: 768px) {

    .inquiry-section {
        padding: 0px 30px;
    }

    .inquiry-box {
        padding: 40px 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .send-btn {
        width: 100%;
        text-align: center;
    }

    .inquiry-box h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }
}