﻿
      :root {
            --primary-blue: #003366;
            --secondary-blue: #002244;
            --accent-yellow: #f1a80a;
            --bg-light: #f8fbc2; /* Subtle background matching the graphic tint */
            --bg-body: #f4f7fa;
            --text-main: #333333;
            --text-muted: #666666;
            --white: #ffffff;
            
            /* Status Colors */
            --highlight-blue-bg: #e8f0fe;
            --highlight-blue-icon: #1a73e8;
            --highlight-green-bg: #e6f4ea;
            --highlight-green-icon: #137333;
            --highlight-pink-bg: #fce8e6;
            --highlight-pink-icon: #c5221f;
            --highlight-yellow-bg: #fef7e0;
            --highlight-yellow-icon: #b06000;
        }

      /* ==========================================================================
           TC PROCESS STEPS SECTION
           ========================================================================== */
        .process-section {
            padding: 50px 0;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            position: relative;
        }

        .process-item {
            background: var(--white);
            border-radius: 12px;
            padding: 30px 25px 24px 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            position: relative;
            border: 1px solid #ffdede;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffe7e6;
            color: #b3150f;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            border: 3px solid var(--white);
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .process-item-icon {
            font-size: 32px;
            color: #b3150f;
            margin-bottom: 10px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .process-item h3 {
            font-size: 15px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 8px;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            line-height: 24px;
            width: 84%;
        }

        .process-item p {
            font-size: 13px;
            color: #4a4a4a;
            line-height: 21px;
        }


        /* ==========================================================================
           POLICY OVERVIEW SECTION
           ========================================================================== */
        .policy-section {
            padding: 50px 0;
            background: aliceblue;
        }

        .policy-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .policy-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            border-top: 4px solid var(--primary-blue);
            display: flex;
            flex-direction: column;
        }

        .policy-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .policy-card-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .policy-card-header h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 0;
        }

        .policy-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .policy-card ul li {
            font-size: 12.9px;
            color: #444;
            position: relative;
            padding-left: 15px;
            line-height: 1.5;
        }

        .policy-card ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: -2px;
            font-size: 16px;
        }

        /* Specific style systems for the 4 variants */
        .pc-withdrawal { border-top-color: #1a73e8; }
        .pc-withdrawal .policy-card-icon { background: #e8f0fe; color: #1a73e8; }
        .pc-withdrawal .policy-card-header h3 { color: #1a73e8; }
        .pc-withdrawal ul li::before { color: #1a73e8; }

        .pc-fee { border-top-color: #137333; }
        .pc-fee .policy-card-icon { background: #e6f4ea; color: #137333; }
        .pc-fee .policy-card-header h3 { color: #137333; }
        .pc-fee ul li::before { color: #137333; }

        .pc-discipline { border-top-color: #8e24aa; }
        .pc-discipline .policy-card-icon { background: #f3e5f5; color: #8e24aa; }
        .pc-discipline .policy-card-header h3 { color: #8e24aa; }
        .pc-discipline ul li::before { color: #8e24aa; }

        .pc-issuance { border-top-color: #f1a80a; }
        .pc-issuance .policy-card-icon { background: #fef7e0; color: #b06000; }
        .pc-issuance .policy-card-header h3 { color: #b06000; }
        .pc-issuance ul li::before { color: #f1a80a; }

        h4.top-herd1 {
    margin-bottom: 45px;
}
@media(max-width:768px) {
    .process-grid {
    display: block;
}
.process-item {
    margin-bottom: 30px;
}
.policy-grid {
    display: block;
}
.policy-card {
    margin-bottom: 20px;
}
}