.commitment-card {
    background: white;
    border: none;
    border-radius: 28px;
    box-shadow:
        0 20px 35px -8px rgba(0, 20, 30, 0.08),
        0 8px 16px -6px rgba(0, 40, 60, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    height: 100%;
    padding: 2rem 1.8rem;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 40px -12px rgba(0, 55, 80, 0.15);
}

.icon-placeholder {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 1.2rem;
    color: #0a5e7c;
    /* trustworthy deep teal */
}

.section-title {
    font-size: 2.2rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    color: #0b3b4b;
    border-right: 7px solid #1a7f9e;
    padding-right: 1.5rem;
}

.subtitle-accent {
    color: #1d6f8b;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lead-statement {
    font-size: 1.3rem;
    font-weight: 400;
    background: #00f2fb;
    padding: 1.8rem 2.2rem;
    border-radius: 50px 50px 50px 12px;
    color: #103a49;
    border: 1px solid rgba(26, 127, 158, 0.15);
}

/* subtle bullet style for inclusive list idea */
.custom-bullet {
    list-style: none;
    padding-right: 0;
}

.custom-bullet li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 0.6rem;
}

.custom-bullet li::before {
    content: "•";
    color: #1a7f9e;
    font-weight: bold;
    font-size: 1.8rem;
    position: absolute;
    right: 0;
    top: -0.5rem;
}

/* extra touch: soft divider */
.soft-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #a1c9db, #1a7f9e, #a1c9db);
    margin: 1.8rem 0 2rem 0;
    border-radius: 10px;
}

/* no header, no footer – only body content */

/****============ Main-banner ===========***/
/* full-width hero section: image background, overlay, fixed height 680px, max-width 1920px centered */
.hero-commitment {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    height: 680px; /* fixed height as requested */
    background-image: url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?q=80&w=1920&auto=format&fit=crop"); /* people / community image */
    background-size: cover;
    background-position: center 30%; /* focus on crowd/landscape */
    background-repeat: no-repeat;
    position: relative;
    /* subtle inner shadow for depth (optional) */
    box-shadow: inset 0 -20px 20px -10px rgba(0, 0, 0, 0.1);
}
/* dark overlay with gradient to keep text readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(6, 50, 66, 0.85) 0%,
        rgba(8, 74, 92, 0.75) 50%,
        rgba(8, 94, 114, 0.7) 100%
    );
    /* overlay with deep teal tones – matches commitment card colors */
    display: flex;
    align-items: center; /* vertically center text */
    justify-content: flex-start; /* horizontally start (right side in RTL) */
    padding: 2rem 3rem;
}
/* text container: fully responsive, max-width for large screens */
.hero-text {
    color: white;
    max-width: 750px;
    margin-right: 5%; /* keep some space from right edge */
    text-shadow: 0 4px 18px rgba(0, 20, 30, 0.5);
    animation: fadeSlide 1s ease-out;
}
.hero-text .badge-commit {
    background-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(3px);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.03em;
    color: #f0f9ff;
}
.hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 4.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-text p {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 650px;
}
.hero-text .btn-commit {
    background-color: #f5c542; /* warm gold accent */
    color: #06323f;
    border: none;
    padding: 0.9rem 2.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 60px;
    box-shadow: 0 12px 25px -8px rgba(0, 0, 0, 0.4);
    transition: all 0.25s;
    border: 2px solid rgba(255, 255, 200, 0.5);
}
.hero-text .btn-commit:hover {
    background-color: #ffda6a;
    transform: scale(1.02);
    box-shadow: 0 20px 30px -8px #02161d;
    color: #02161d;
}
/* small responsive tweaks */
@media (max-width: 768px) {
    .hero-commitment {
        height: 600px; /* slightly smaller on mobile but still tall */
    }
    .hero-overlay {
        padding: 1.5rem;
        align-items: flex-end; /* on mobile, align text to bottom for better view */
        justify-content: center;
        text-align: center;
    }
    .hero-text {
        margin-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
}
/* fade slide animation */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* optional dummy content before/after to show full width — not part of section */
.dummy-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}
