.gq-hero {
    text-align: center;
    margin-bottom: 40px;
}
.gq-page-title {
    font-size: var(--pages-h1);
    margin: 0 0 10px;
}

.gq-page-subtitle {
    font-size: 16px;
    color: var(--secondary-text-color);
    margin: 0;
}

.gq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.gq-form-col {
    position: sticky;
    top: 20px;
    align-self: start;
}

.gq-form-card {
    background: #fff;
    border-radius: var(--b-radius);
    padding: 32px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.gq-form-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--heading-color);
    margin: 0 0 22px;
}

/* FAQ column */
.gq-faq-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--heading-color);
    margin: 0 0 4px;
    padding-bottom: 18px;
    position: relative;
}

.gq-faq-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--primary-color);
}

.gq-faq-list {
    margin-top: 22px;
}

.gq-faq-item {
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e0;
}

.gq-faq-item:last-child {
    border-bottom: none;
}

.gq-faq-item h3 {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 6px;
}

.gq-faq-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-text-color);
    margin: 0;
}
#getQuoteForm {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.qf-row {
    display: grid;
    gap: 14px;
}

.qf-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.qf-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.qf-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.qf-input,
.qf-select,
.qf-textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    background: transparent;
    font-size: 15px;
    font-family: inherit;
    color: var(--heading-color);
    outline: none;
    transition: .25s;
    border-radius: 0;
}

.qf-input::placeholder,
.qf-textarea::placeholder {
    color: #777;
}

.qf-input:focus,
.qf-select:focus,
.qf-textarea:focus {
    border-bottom-color: var(--primary-color);
}

.qf-input[type="number"]::-webkit-inner-spin-button,
.qf-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qf-input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.qf-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23777777'%3E%3Cpath d='M2 4l4 4 4-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.qf-textarea {
    resize: none;
    min-height: 90px;
}

.qf-file-wrap {
    position: relative;
    border: 1px dashed #d7d7d7;
    border-radius: 8px;
    min-height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .25s;
}

.qf-file-wrap:hover {
    border-color: var(--primary-color);
}

.qf-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.qf-file-btn {
    display: none;
}

.qf-file-name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.qf-submit-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    cursor: pointer;
    transition: .3s;
}

.qf-submit-btn:hover {
    background: var(--secondary-color);
}

.qf-submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .gq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gq-form-col {
        position: static;
    }

    .gq-form-card {
        padding: 22px;
    }
}