 :root {
            --maroon: #70181f;
            --green: #427d3a;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f5f5f5;
            --text-gray: #555555;
            --border-light: #e0e0e0;
        }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    background: #fafafa;
    overflow-x: hidden;
}

/* Hero Section */
.leadership-hero {
    background: linear-gradient(rgb(112 24 31 / 34%), rgb(112 24 31 / 68%)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
    /* padding: 120px 0 100px; */
    position: relative;
    overflow: hidden;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
} 
/* Overview Section */
        .overview-section {
            padding: 80px 0;
            background: var(--white);
            margin-top: -60px;
            position: relative;
            z-index: 20;
        }

        .overview-container {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .overview-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 20px;
        }

        .overview-text p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .overview-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .overview-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--green);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Types Section */
        .types-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .type-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .type-card:hover {
            transform: translateY(-10px);
            border-color: var(--green);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.15);
        }

        .type-icon {
            width: 80px;
            height: 80px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .type-card:hover .type-icon {
            background: var(--maroon);
            transform: scale(1.1);
        }

        .type-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .type-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
        }

        .type-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .type-features {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .type-features li {
            font-size: 0.9rem;
            color: var(--text-gray);
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .type-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: bold;
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: var(--white);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 3px;
            background: var(--green);
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: var(--green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .process-step:hover .process-number {
            background: var(--maroon);
            transform: scale(1.1);
        }

        .process-step h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Requirements Section */
        .requirements-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .requirement-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px;
            border-left: 5px solid var(--maroon);
        }

        .requirement-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .requirement-card h4 i {
            color: var(--maroon);
        }

        .requirement-card ul {
            list-style: none;
            padding: 0;
        }

        .requirement-card li {
            font-size: 1rem;
            color: var(--text-gray);
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
        }

        .requirement-card li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--maroon);
            font-size: 1.5rem;
            line-height: 1;
        }

        /* Fee Section */
        .fee-section {
            padding: 80px 0;
            background: var(--white);
        }

        .fee-table-container {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .fee-table {
            width: 100%;
            margin: 0;
        }

        .fee-table thead {
            background: var(--maroon);
            color: var(--white);
        }

        .fee-table th {
            padding: 20px;
            font-weight: 600;
            text-align: left;
            font-size: 1.1rem;
        }

        .fee-table td {
            padding: 20px;
            border-bottom: 1px solid var(--border-light);
            font-size: 1rem;
            color: var(--text-gray);
        }

        .fee-table tbody tr:hover {
            background: var(--light-bg);
        }

        .fee-amount {
            font-weight: 700;
            color: var(--green);
            font-size: 1.1rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--light-bg);
        }

        .faq-question h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--black);
            margin: 0;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--green);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer p {
            padding-bottom: 25px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--black);
        }

        .section-header.light .section-tag {
            background: var(--white);
            color: var(--black);
        }

        .section-header.light .section-title {
            color: var(--white);
        }

        .section-header.light .section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .contact-box {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.2);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .contact-box h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .contact-box p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .contact-box a {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-box a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--maroon);
            text-align: center;
        }

        .cta-content h3 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 35px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--maroon);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            background: var(--green);
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .types-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-boxes {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .overview-content {
                grid-template-columns: 1fr;
            }

            .types-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-step::after {
                display: none;
            }

            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .contact-boxes {
                grid-template-columns: 1fr;
            }
        }