/* ── PAGE WRAPPER ── */
.gst-section {
    padding: 40px 0;
}

/* ── TOP IMAGE ROW ── */
.gst-image-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0;          /* removed side padding */
}

.gst-image-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;           /* full width instead of 420px */
}

/* Decorative maroon border frame behind the image */
/*.gst-image-wrap::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 14px;*/
/*    left: 14px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    border: 3px solid #8B3A0F;*/
/*    border-radius: 10px;*/
/*    z-index: 0;*/
/*}*/

.gst-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;            
    border-radius: 10px;
    display: block;
    object-fit: fill;
    border: 2px solid #E8D5C8;
    box-shadow: 0 8px 32px rgba(107, 32, 16, 0.15);
}

/* Badge on image */
/*.gst-image-badge {*/
/*    position: absolute;*/
/*    bottom: -16px;*/
/*    right: -16px;*/
/*    z-index: 2;*/
/*    background: #6B2010;*/
/*    color: #FDF6F0;*/
/*    font-size: 0.78rem;*/
/*    font-weight: 700;*/
/*    letter-spacing: 0.1em;*/
/*    text-transform: uppercase;*/
/*    padding: 10px 18px;*/
/*    border-radius: 6px;*/
/*    border: 2px solid #C1622A;*/
/*    box-shadow: 0 4px 14px rgba(107, 32, 16, 0.25);*/
/*}*/

/* ── BOTTOM CONTENT ── */
.gst-content-col {
    padding-left: 0;           /* removed left indent */
    padding-top: 40px;         /* space below image */
}

/* Eyebrow label — unchanged */
.gst-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C1622A;
    border-left: 3px solid #C1622A;
    padding-left: 10px;
    margin-bottom: 14px;
}

/* Main heading — unchanged */
.gst-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #6B2010;
    line-height: 1.15;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

/* Decorative rule — unchanged */
.gst-rule {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B3A0F, #C1622A);
    border-radius: 2px;
    margin: 14px 0 20px;
}

/* Intro paragraph — unchanged */
.gst-intro {
    font-size: 16px;
    color: #000000;
    line-height: 33px;
    margin-bottom: 24px;
    /*font-style: italic;*/
    /*border-left: 2px solid #E8D5C8;*/
    padding-left: 16px;
}

/* Subtitle for list — unchanged */
.gst-list-label {
    font-size: 1rem;
    font-weight: 700;
    color: #6B2010;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Expertise list — unchanged */
.gst-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gst-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #F0E4DA;
    font-size: 0.91rem;
    color: #3A2210;
    font-weight: 600;
    line-height: 1.55;
}
.gst-list li:last-child {
    border-bottom: none;
}
.gst-list li .bullet-icon {
    flex-shrink: 0;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    background: #6B2010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gst-list li .bullet-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #D4845A;
    border-radius: 50%;
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .gst-image-wrap img {
        height: 260px;
    }
    .gst-heading {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .gst-section {
        padding: 40px 0 50px;
    }
    .gst-heading {
        font-size: 1.7rem;
    }
    .gst-image-wrap img {
        height: 200px;
    }
}