<style>.form-area {
    width: 48.8%;
}

.form-area h3 {
    color: #fff;
    margin-bottom: 0px;
    margin-left: 20px;
}

.form-area textarea {
    min-height: 100px;
}

.form-fex-col {
    display: flex;
    flex-direction: column;
}

.form-row-img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    align-self: flex-end;
}

.ngp-section {
    padding-bottom: 30px;
}

.ngp-row {
    padding-top: 30px;
    padding-bottom: 30px;
}

.gate-type-section {
    display: flex;
}

.ngp-gate-container,
.white-bg-wrap {
    background-color: #fff;
    padding-top: 40px;
}

.ngf-blue-block {
    background-color: rgb(42, 113, 168);
    color: #fff;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
}

.ngf-blue-block h3 {
    color: #fff;
    margin-top: 10px;
}


.ngf-blue-block h4 {
    margin: 0px;
}


/* ---------- Layout normalizers / responsive padding ---------- */
section.container-fluid {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 767px) {
    section.container-fluid {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* Prevent older one-off paddings from fighting the consistent section spacing */
.ngp-section,
.ngp-row {
    padding-top: 0;
    padding-bottom: 0;
}

/* Bootstrap-style inner width container (site already uses this class) */
.fluid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


@media (max-width: 991px) {
    .form-area {
        padding-top: 20px;
    }
}

/* ---------- Gate type section ---------- */
.gate-type-section .fluid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gate-type-section .fluid-container:before {
    display: none;
}

.gate-type-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    flex: 1 1 calc(50% - 20px);
    min-width: 220px;
}

.gate-type-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.gate-type-card .gate-type-card-img,
.gate-type-card .gate-type-care--img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.gate-type-card p {
    margin-top: 10px;
    margin-bottom: 18px;
}

.gate-type-card a.btn {
    margin-top: auto;
    /* pushes button to the bottom */
    align-self: flex-start;
    width: 100%;
}


/* Lists (avoid duplicate IDs) */
.area-list {
    padding-left: 18px;
    margin: 0;
}

.area-list li {
    margin-bottom: 6px;
}

/* ---------- FAQ accordion ---------- */
.faq-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.faq-accordion {
    max-width: 900px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 18px;
    font-weight: 600;
    position: relative;
}

/* remove default marker in some browsers */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
}

.faq-item[open] summary:after {
    content: "–";
}

.faq-answer {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-answer p {
    margin: 14px 0 0;
}


/* Align key images to the bottom of their column */
.form-fex-col .form-row-img {
    margin-top: auto;
    display: block;
    max-width: 100%;
}

/* Make the "Why Gate-F/X..." image behave the same way */
.ngp-gate-container .row>.col-md-6 {
    display: flex;
    flex-direction: column;
}

.ngp-gate-container .form-row-img {
    margin-top: auto;
    display: block;
    max-width: 100%;
}

/* Proof points band (ngp-dark-bg) */
.ngp-dark-bg {
    padding: 50px 0;
    background: rgba(42, 113, 168, 1);
}

.proof-point-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.proof-point-card {
    flex: 1 1 220px;
    border-radius: 0px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.proof-point-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 12px;
    background-color: #fff;
    border-radius: 50%;
    padding: 12px;

}

.proof-point-card h4 {
    margin: 0;
    color: #fff;
    line-height: 1.25;
}

/* Center the "Areas we serve" section */
.ngp-row {
    text-align: center;
}

.ngp-row .row {
    justify-content: center;
}

.ngp-row .area-list {
    display: inline-block;
    text-align: left;
    /* keep list readable while centered overall */
}

/* Gate type cards: center card content */
.gate-type-card {
    text-align: center;
    align-items: center;
    /* overrides existing flex column for centering */
}

.gate-type-card p {
    text-align: center;
}

.gate-type-card .btn {
    margin-top: auto;
    /* keep buttons aligned along the bottom of each card */
}

/* NGP gate containers: style each H3 + P pair like a subtle card */
.ngp-gate-container .col-md-6 {
    gap: 16px;
}

.ngp-gate-container .boxed-section {
    background: rgb(246, 246, 246);
    padding: 10px 20px 20px 20px;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ngp-gate-container .boxed-section--setmh {
    min-height: 380px;
}


/* FAQ band: center within the band */
.faq-section {
    text-align: center;
}

.faq-accordion {
    margin: 0 auto;
    text-align: left;
    /* keep accordion text readable */
}


@media (max-width: 991px) {
    .gate-type-card {
        flex: 1 1 calc(50% - 20px);
    }

    .showcase-area .fluid-container {
        padding-top: 0px;
    }

    .form-area {
        width: 100%;
    }

    .ngp-gate-container .boxed-section--setmh {
        min-height: 0px;
    }

    .form-row-img {
        min-height: 380px;

    }

    .ngp-gate-container .col-md-6:last-child {
        margin-top: 16px;
    }


}

@media (max-width: 575px) {
    .gate-type-card {
        flex: 1 1 100%;
    }
}

</style>