.elementor-205 .elementor-element.elementor-element-91d78ab{--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-e96c3db *//* ===== SECTION ===== */
.scheme-section {
    padding: 60px 20px;
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
}

/* ===== TOP FLEX ===== */
.top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* IMAGE */
.top-img {
    flex: 1;
}

.top-img img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
}

/* CONTENT */
.top-content {
    flex: 1;
}

.top-content h2 {
    font-size: 28px;
    color: #8B0000;
    margin-bottom: 15px;
}

.top-content p {
    color: #555;
    line-height: 1.7;
}

/* ===== HEADING ===== */
.main-heading {
    text-align: center;
    margin-top: 60px;
}

.main-heading h2 {
    font-size: 30px;
    color: #8B0000;
    margin-bottom: 10px;
}

.main-heading p {
    color: #666;
    max-width: 900px;
    margin: auto;
}

/* ===== GRID ===== */
.scheme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* CARD */
.scheme-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.scheme-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.scheme-card img {
    width: 100%;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .scheme-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .scheme-grid {
        grid-template-columns: 1fr;
    }

    .main-heading h2 {
        font-size: 24px;
    }

    .top-content h2 {
        font-size: 22px;
    }
}/* End custom CSS */