/* =========================
   GET INVOLVED SECTION
========================= */
.get-involved-section {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(135deg, #192850 0%, #00bf63 100%);
    color: #fff;
    display: flex;
    justify-content: center;
}

.get-involved-container {
    max-width: 1200px;
    width: 100%;
}

/* Header */
.get-involved-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.get-involved-header h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
}

.get-involved-header p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Grid */
.get-involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Items */
.involve-item {
    text-align: center;
    padding: 0 15px;
}

.involve-item img {
    width: 70px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.involve-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.involve-item p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Highlight middle column */
.involve-item.highlight {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .get-involved-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .involve-item.highlight {
        border: none;
    }
}

@media (max-width: 576px) {
    .get-involved-section {
        padding: 80px 15px;
    }

    .get-involved-header h2 {
        font-size: 34px;
    }

    .get-involved-header p {
        font-size: 15px;
    }

    .involve-item img {
        width: 60px;
    }

    .involve-item h3 {
        font-size: 20px;
    }

    .involve-item p {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .get-involved-header h2 {
        font-size: 28px;
    }

    .involve-item p {
        font-size: 13px;
    }
}
