.elementor-132 .elementor-element.elementor-element-714e970{--display:flex;}/* Start custom CSS for html, class: .elementor-element-875ddf4 *//* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Playfair display', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
}

.main-title {
    font-size: 80px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

/* Contact Info Styling */
.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p, .contact-info a {
    color: #555;
    text-decoration: none;
    line-height: 1.6;
    font-size: 15px;
}

/* Form Styling */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input, 
.form-row select, 
.form-row textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
    font-size: 14px;
}

textarea {
    resize: none;
}

.submit-btn {
    width: fit-content;
    padding: 12px 40px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
    }
    .main-title {
        font-size: 40px;
    }
}/* End custom CSS */