.hero-1 .th-hero-bg::before {
    background: none;
}

.hero-title {
    font-family: "EB Garamond", serif;
}

.hero-brief p, .here-brief h1, .hero-brief h2, .hero-brief a {
    color: #fff;
}

.hero-brief p {
    font-size: 24px;
    font-weight: 500;
}

.faq-text p, .faq-text th, .faq-text h1, .faq-text h2, .faq-text h3, .faq-text h4, .faq-text h5 {
    color: #fff;
}

.hero-banner {
    background: linear-gradient(to right, #e3c790, #fcf5cc 30%, #fcf5cc 70%, #e3c790); 
    padding: 40px 0 0 0; /* Removed bottom padding so images sit on the edge */
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-section {
    flex: 1;
    padding: 0 30px;
    padding-bottom: 40px; /* Add bottom padding back to the text sections */
}

.text-section.left {
    text-align: right;
}

.text-section.right {
    text-align: left;
}

.section-title {
    color: #8c2a30;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.register-link {
    color: #8c2a30;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: bold;
}

.image-section {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align bottom */
    position: relative;
}

.person-img {
    object-fit: contain;
    z-index: 2;
}

.boy-img {
    max-height: 320px; /* Increased size */
    margin-right: -40px; /* Increased overlap */
    z-index: 3; /* Brings boy slightly forward if needed */
}

.woman-right-img {
    max-height: 420px; /* Increased size for teachers */
}

.graphics-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path d="M50 50 L100 0 L150 50 Z" fill="%23cbe638" opacity="0.5"/></svg>'); /* Placeholder */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (max-width: 992px) {
    .banner-content {
        flex-direction: column;
    }
    .text-section {
        text-align: center !important;
        margin-bottom: 30px;
        padding-bottom: 0;
    }
    .image-section {
        margin-top: 20px;
    }
    .text-section.right {
        margin-top: 30px;
    }
}