.elementor-4204 .elementor-element.elementor-element-d58f3cf{--display:flex;--margin-top:30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-2eebcb0 *//* GLOBAL WRAPPER */
.edu-wrapper { 
    background: #ffffff; 
    overflow-x: hidden;
    width: 100%;
}

/* 1. FULL WIDTH HERO - THE FIX */
.edu-hero {
    width: 100%;
    height: 500px; /* Fixed height ensures stability */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0 60px 0; /* Zero top margin stops it from sliding up */
    display: block;
}

/* 2. CENTERED CONTAINER */
.edu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    font-family: 'Lato', sans-serif;
}

/* GRID LAYOUT */
.edu-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: start;
    min-height: 800px; /* Ensures space for the sticky sidebar to scroll */
}

/* BRANDING & HEADERS */
.edu-eyebrow {
    color: #a3051e;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 12px;
}

.edu-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #000;
    margin: 0;
    line-height: 1.1;
}

.edu-accent-bar {
    width: 60px;
    height: 4px;
    background: #a3051e;
    margin: 30px 0 40px;
}

/* TEXT SPECIFICATIONS */
.edu-text-body p {
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 29px !important;
    color: #000000 !important;
    margin-bottom: 25px;
}

.edu-lead {
    font-size: 22px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    border-left: 5px solid #a3051e;
    padding-left: 30px;
    margin-bottom: 45px !important;
    color: #333 !important;
}

/* SIDEBAR & STICKY CARD */
.edu-sticky-sidebar { 
    position: sticky; 
    top: 50px; /* Distance from top of screen when scrolling */
}

.skills-card {
    background: #ffffff;
    padding: 40px 25px;
    border: 1px solid #eeeeee;
    border-top: 5px solid #a3051e;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.skills-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding: 18px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.step-num {
    font-size: 24px;
    font-weight: 900;
    color: #dddddd;
    transition: color 0.3s ease;
}

.step-info strong { 
    display: block; 
    font-size: 15px; 
    color: #000; 
}

.step-info span { 
    font-size: 12px; 
    color: #777; 
}

/* HOVER EFFECTS */
.step-item:hover {
    background: #fff;
    border-color: #e0e0e0;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(163, 5, 30, 0.08);
}

.step-item:hover .step-num {
    color: #a3051e;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .edu-grid { grid-template-columns: 1fr; gap: 50px; }
    .edu-hero { height: 350px; margin-bottom: 40px; }
    .edu-container { padding: 0 25px; }
    .edu-sticky-sidebar { position: static; }
}/* End custom CSS */