﻿:root {
    --brand-green: #198754;
    --brand-green-dark: #12633d;
    --brand-green-light: #e8f5e9;
    --brand-red: #ea234d;
    --brand-red-dark: #c4183c;
    --brand-red-light: #fde8ec;
    --text-main: #212529;
    --text-muted: #6c757d;
    --bg-body: #f8f9fa;
    --border-color: #e9ecef;
    --white: #ffffff;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
    --radius-md: 12px;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* --- HERO BANNER --- */
.hero-banner {
    background: linear-gradient(135deg, #198754 0%, #12633d 100%);
    color: var(--white);
    padding: 50px 0 60px;
    text-align: center;
}

    .hero-banner h1 {
        font-weight: 700;
        font-size: 2.2rem;
    }

    .hero-banner p {
        font-size: 1.1rem;
        opacity: 0.95;
        max-width: 750px;
        margin: 0 auto;
    }

/* --- CARDS & CONTAINERS --- */
.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--brand-green);
    }

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.icon-green {
    background: var(--brand-green-light);
    color: var(--brand-green);
}

.icon-red {
    background: var(--brand-red-light);
    color: var(--brand-red);
}

/* --- SECTION TITLES --- */
.section-title {
    text-align: center;
    margin-bottom: 35px;
}

    .section-title h2 {
        font-weight: 700;
        color: var(--text-main);
        font-size: 1.8rem;
    }

.section-title-left {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

    .section-title-left::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: var(--brand-green);
        border-radius: 2px;
    }

/* --- CTA BANNER --- */
.cta-box {
    background: linear-gradient(135deg, #fde8ec 0%, #ffffff 100%);
    border: 1px solid var(--brand-red-light);
    border-left: 5px solid var(--brand-red);
    border-radius: var(--radius-md);
    padding: 25px 30px;
}
