.elementor-223 .elementor-element.elementor-element-86337ff{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-232a87c */:root {
    --primary-blue: #1A237E;
    --accent-gold: #C5A022;
    --text-color: #444;
    --bg-white: #ffffff;
}

.intro-page {
    width: 100%;
    margin-top: 0; 
}

/* Cover Image Styling */
.intro-cover {
    position: relative;
    width: 100%;
    height: 50vh; /* Slightly more minimal height */
    min-height: 350px;
    overflow: hidden;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65); /* Darkened slightly for text clarity */
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cover-text h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

/* Content Area */
.intro-content-wrapper {
    background: var(--bg-white);
    padding: 60px 5% 100px 5%;
    position: relative;
    z-index: 5;
}

.intro-container {
    max-width: 800px; /* Narrower for better readability on desktop */
    margin: 0 auto;
}

.intro-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 10px;
}

.intro-header h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-top: 5px;
    position: relative;
    padding-bottom: 25px;
    line-height: 1.2;
}

.intro-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.intro-body p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 25px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .intro-cover { height: 40vh; }
    .intro-content-wrapper { padding: 50px 20px; }
    .intro-header h2 { font-size: 1.9rem; }
    .intro-body p { font-size: 1.1rem; line-height: 1.7; }
}/* End custom CSS */