    /* St. John's Academy - Minimalist Academic Banner */
.jra-about-banner {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    /* Use a wide-angle campus or high-tech lab photo from brochure */
    background-image: url('./img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* fallbacks */
    background-color: #008751; 
}

/* 1. JRA Institutional Overlays */
.banner-overlay-jra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Institutional Green (85%) to Black (95%) gradient for a prestigious look */
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.Banner-Content-Wrapper {
    position: relative;
    z-index: 2;
    padding-top: 7%;
}

/* 2. Centered Content Styling */
.banner-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.banner-pre-title {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Subtle accent lines around pre-title */
.banner-pre-title::before, .banner-pre-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.banner-pre-title::before { left: -45px; }
.banner-pre-title::after { right: -45px; }

.banner-main-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

/* Gold Accent for the target phrase */
.highlight-gold {
    color: #FFD700; /* Academic Gold */
    position: relative;
}

.highlight-gold::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #FFD700; /* Gold Underline */
    bottom: -10px;
    left: 0;
}

.banner-sub-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Institutional Button */
.banner-btns {
    display: flex;
    justify-content: center;
}

.btn-jra-green {
    background: #008751; /* JRA Green */
    color: #ffffff;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #008751;
}

.btn-jra-green:hover {
    background: transparent;
    border-color: #FFD700; /* Gold Hover */
    color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 135, 81, 0.3);
}

/* Basic Mobile Responsiveness */
@media (max-width: 768px) {
    .jra-about-banner { padding: 100px 0; }
    .banner-main-title { font-size: 36px; }
    .banner-sub-title { font-size: 16px; margin-bottom: 50px; }
    .btn-jra-green { padding: 15px 30px; font-size: 14px; }
}