:root {
            --heading: #002C3E;
            --subheading: #0B74B5;
            --text: #000000;
            --pointer: #142d43;
            --border: #dde2ea;
            --shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
            --radius: 14px;
            --card-bg: #E5F3FF;
            --muted: #6b7280;
            --btn-bg: #0B74B5;
            --btn-text: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: #ffffff;
            color: var(--text);
            line-height: 1.5;
        }

        /* MAIN WRAPPER */
        .page-wrap {
            max-width: 1120px;
            margin: 0 auto;
            padding: 2.2rem 1.4rem 2.8rem;

        }

        @media (max-width: 1200px) {
            .page-wrap {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        /* HEADER */
        .page-title {
            margin-bottom: 1.4rem;
        }

        .page-title h2 {
            font-family: "Merriweather", "Playfair Display", serif;
            font-size: clamp(2rem, 2.4vw, 2.2rem);
            color: var(--heading);
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }

        .title-icon-circle {
            display: inline-flex;
            width: 28px;
            height: 28px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #E5F3FF;
            border: 1px solid #cfe4ff;
        }

        .page-title span {
            font-size: 0.95rem;
            color: var(--muted);
        }

        /* CARD */
        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 0.85rem 0.95rem;
            box-shadow: var(--shadow);
            margin-bottom: 0.9rem;
            transition: 0.25s ease;
        }

        .card:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
        }

        h4.section-heading {
            font-family: "Merriweather", "Playfair Display", serif;
            font-size: 1.02rem;
            color: var(--subheading);
            font-weight: 600;
            margin-bottom: 0.35rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .heading-icon {
            width: 20px;
            height: 20px;
            border-radius: 999px;
            background: #ffffff;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--pointer);
        }

        p {
            font-size: 0.9rem;
            color: var(--text);
        }

        ul {
            list-style: disc;
            margin-left: 1.2rem;
        }

        ul li {
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        /* INTRO LAYOUT – TEXT + IMAGE */
        .intro-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: flex-start;
        }

        .intro-text {
            flex: 1 1 230px;
        }

        .intro-image {
            flex: 0 0 230px;
            max-width: 260px;
        }

        .intro-image-inner {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
            border: 1px solid #dbe2ea;
            background: #ffffff;
            position: relative;
        }

        .intro-image img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        .intro-caption {
            position: absolute;
            left: 0.55rem;
            bottom: 0.5rem;
            background: rgba(0, 0, 0, 0.55);
            color: #f9fafb;
            padding: 0.18rem 0.55rem;
            font-size: 0.75rem;
            border-radius: 999px;
        }

        @media (max-width: 720px) {
            .intro-layout {
                flex-direction: column;
            }

            .intro-image {
                max-width: 100%;
            }
        }

        /* ESSENTIAL TAX INFO – GRID */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 0.6rem 1.4rem;
            margin-top: 0.3rem;
        }

        .info-item {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #dde2ea;
            padding: 0.6rem 0.7rem;
            font-size: 0.86rem;
        }

        .info-head {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 0.12rem;
        }

        .info-icon {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            background: #E5F3FF;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--subheading);
            flex-shrink: 0;
        }

        .info-title {
            font-weight: 600;
            color: var(--heading);
            font-size: 0.9rem;
        }

        .info-text {
            font-size: 0.86rem;
            color: var(--muted);
        }

        /* QUICK STEPS + BUTTONS */
        .steps-list {
            list-style: none;
            margin-left: 0;
            margin-top: 0.1rem;
        }

        .steps-list li {
            font-size: 0.88rem;
            margin-bottom: 0.18rem;
            display: flex;
            gap: 0.4rem;
            align-items: flex-start;
        }

        .step-symbol {
            font-size: 0.8rem;
            color: var(--pointer);
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .quick-links {
            margin-top: 0.45rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
        }

        .quick-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.9rem;
            background: var(--btn-bg);
            color: var(--btn-text);
            border-radius: 999px;
            font-size: 0.86rem;
            font-weight: 500;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: 0.2s ease;
        }

        .quick-link-btn:hover {
            background: #095c8f;
            transform: translateY(-1px) scale(1.03);
        }

        /* OFFICERS TABLE */
        table {
            width: 100%;
            border-collapse: collapse;
            background: #ffffff;
            font-size: 0.86rem;
            margin-top: 0.35rem;
        }

        thead {
            background: #ecf5ff;
        }

        th,
        td {
            padding: 0.45rem 0.55rem;
            border-bottom: 1px solid #e5e7eb;
            text-align: left;
        }

        th {
            font-weight: 600;
            color: var(--heading);
        }

        tbody tr:nth-child(even) {
            background: #f9fafb;
        }

        /* SMALL NOTE STRIP */
        .note-strip {
            border-radius: 10px;
            border: 1px dashed #bfdbfe;
            background: #eff6ff;
            padding: 0.5rem 0.7rem;
            font-size: 0.86rem;
            color: var(--pointer);
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.2rem;
        }

        .note-icon {
            width: 20px;
            height: 20px;
            border-radius: 999px;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }