
/* ========== MAIN SITE STYLES (Premium Job Portal) ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            color: #0f172a;
            line-height: 1.5;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* header */
        .premium-header {
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 16px 0;
            gap: 16px;
        }
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1e3c72, #2a5298, #e67e22);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }
        .logo span {
            font-size: 0.9rem;
            font-weight: 500;
            color: #475569;
            display: block;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            color: #1e293b;
            transition: 0.2s;
        }
        .nav-links a:hover {
            color: #e67e22;
        }
        /* marquee */
        .marquee-modern {
            background: #0f172a;
            color: white;
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 600;
        }
        .marquee-modern p {
            display: inline-block;
            padding-left: 20px;
            animation: marqueeScroll 24s linear infinite;
        }
        @keyframes marqueeScroll {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-100%); }
        }
        /* hero */
        .hero-premium {
            background: linear-gradient(120deg, #eef2ff, #ffffff);
            padding: 48px 0 56px;
            text-align: center;
            border-radius: 0 0 32px 32px;
            margin-bottom: 32px;
        }
        .hero-premium h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(145deg, #0f2b3d, #e67e22);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 16px;
        }
        .hero-premium p {
            font-size: 1.2rem;
            color: #334155;
            max-width: 720px;
            margin: 0 auto;
        }
        /* community boxes */
        .community-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin: 40px 0 32px;
            justify-content: center;
        }
        .telegram-premium, .whatsapp-premium {
            flex: 1;
            min-width: 260px;
            background: white;
            border-radius: 28px;
            padding: 24px 28px;
            text-align: center;
            transition: all 0.2s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.03);
        }
        .telegram-premium:hover, .whatsapp-premium:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }
        .telegram-btn, .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #0088cc;
            color: white;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            margin-top: 16px;
        }
        .whatsapp-btn {
            background: #25D366;
        }
        /* notification strip */
        .notification-strip {
            background: #fff7e6;
            border-left: 8px solid #f97316;
            padding: 14px 20px;
            border-radius: 20px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }
        /* Flash News Section (Premium + .live badge) */
        .flash-news-section {
            background: linear-gradient(135deg, #ffffff 0%, #fffaf2 100%);
            border-radius: 32px;
            padding: 20px 24px;
            margin: 32px 0 40px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(249,115,22,0.2);
        }
        .flash-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
            border-bottom: 2px dashed #ffd9b5;
            padding-bottom: 12px;
        }
        .flash-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .flash-title i {
            font-size: 1.8rem;
            color: #e67e22;
            animation: pulseFlash 1.5s infinite;
        }
        .flash-title h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #b45309;
            letter-spacing: -0.3px;
            margin: 0;
        }
        .live-badge {
            background: #dc2626;
            color: white;
            font-weight: 800;
            font-size: 0.85rem;
            padding: 6px 14px;
            border-radius: 60px;
            letter-spacing: 0.5px;
            box-shadow: 0 0 8px rgba(220,38,38,0.6);
            animation: pulseRed 1.5s infinite;
            white-space: nowrap;
        }
        @keyframes pulseRed {
            0% { opacity: 0.85; transform: scale(1); background-color: #dc2626; box-shadow: 0 0 0 0 rgba(220,38,38,0.4);}
            50% { opacity: 1; transform: scale(1.05); background-color: #ef4444; box-shadow: 0 0 0 4px rgba(220,38,38,0.2);}
            100% { opacity: 0.85; transform: scale(1); background-color: #dc2626; box-shadow: 0 0 0 0 rgba(220,38,38,0);}
        }
        .flash-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: flex-start;
            margin: 16px 0 8px;
        }
        .flash-item {
            background: #fef3e8;
            border-radius: 60px;
            padding: 8px 18px;
            transition: all 0.2s ease;
            border: 1px solid #ffe2c4;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .flash-item i {
            font-size: 0.9rem;
            color: #f97316;
        }
        .flash-item a {
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            color: #1e293b;
            white-space: nowrap;
        }
        .flash-item:hover {
            background: #f97316;
            border-color: #f97316;
            transform: translateY(-2px);
        }
        .flash-item:hover a, .flash-item:hover i {
            color: white;
        }
        .flash-note {
            font-size: 0.75rem;
            margin-top: 18px;
            color: #64748b;
            text-align: left;
        }
        /* Premium Card Grid */
        .premium-card-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin: 48px 0;
        }
        .gradient-card {
            flex: 1 1 260px;
            background: linear-gradient(145deg, #ffffff, #fef9e8);
            border-radius: 28px;
            padding: 1.8rem 1rem;
            text-align: center;
            transition: all 0.25s ease;
            box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 140, 0, 0.2);
        }
        .gradient-card:hover {
            transform: scale(1.02);
            box-shadow: 0 24px 36px -14px rgba(0, 0, 0, 0.15);
        }
        .gradient-card a {
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e293b;
            display: block;
        }
        .gradient-card a:hover { color: #e67e22; }
        /* Main Grid */
        .main-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 28px;
            margin: 40px 0;
        }
        .section-card-modern {
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid #eef2f6;
            transition: all 0.2s;
        }
        .section-card-modern:hover {
            box-shadow: 0 20px 28px -14px rgba(0, 0, 0, 0.08);
        }
        .card-header-modern {
            background: #fef9f0;
            padding: 18px 24px;
            font-weight: 700;
            font-size: 1.3rem;
            border-bottom: 2px solid #ffedd5;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #b45309;
        }
        .link-list-modern {
            list-style: none;
            padding: 8px 0;
        }
        .link-list-modern li {
            border-bottom: 1px solid #f1f5f9;
        }
        .link-list-modern li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
            transition: 0.2s;
        }
        .link-list-modern li a:hover {
            background: #fef9e6;
            color: #e67e22;
            padding-left: 24px;
        }
        .ad-placeholder {
            background: #f1f5f9;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            margin: 32px 0;
            font-size: 0.85rem;
            color: #475569;
            border: 1px dashed #cbd5e1;
        }
        
        @media (max-width: 680px) {
            .header-inner { flex-direction: column; text-align: center; }
            .hero-premium h1 { font-size: 1.9rem; }
            .container { padding: 0 18px; }
            .flash-title h2 { font-size: 1.3rem; }
            .live-badge { font-size: 0.7rem; padding: 4px 10px; }
            .flash-item a { white-space: normal; font-size: 0.8rem; }
        }
        @keyframes pulseFlash {
            0% { opacity: 0.7; transform: scale(1);}
            100% { opacity: 1; transform: scale(1.05);}
        }
        /* contact form */
        .contact-hero {
        background: linear-gradient(120deg, #eef2ff, #ffffff);
        padding: 40px 0 32px;
        text-align: center;
        border-radius: 0 0 32px 32px;
        margin-bottom: 32px;
    }
    .contact-hero h1 {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f2b3d, #e67e22);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 12px;
    }
    .contact-hero p {
        font-size: 1.1rem;
        color: #334155;
        max-width: 700px;
        margin: 0 auto;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin: 40px 0;
    }
    .contact-info-card, .contact-form-card {
        background: white;
        border-radius: 28px;
        padding: 28px 30px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        border: 1px solid #eef2f6;
        transition: 0.2s;
    }
    .contact-info-card:hover, .contact-form-card:hover {
        box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
    }
    .info-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #b45309;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-left: 4px solid #e67e22;
        padding-left: 16px;
    }
    .info-detail {
        margin: 20px 0;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .info-detail strong {
        color: #0f172a;
        display: inline-block;
        width: 110px;
    }
    .info-detail a {
        color: #e67e22;
        text-decoration: none;
    }
    .info-detail a:hover {
        text-decoration: underline;
    }
    .business-box {
        background: #fef9f0;
        border-radius: 20px;
        padding: 18px;
        margin-top: 24px;
        border: 1px solid #ffe2c4;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
        color: #1e293b;
    }
    .form-group input, .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #cbd5e1;
        border-radius: 16px;
        font-family: inherit;
        font-size: 1rem;
        transition: 0.2s;
    }
    .form-group input:focus, .form-group textarea:focus {
        outline: none;
        border-color: #e67e22;
        box-shadow: 0 0 0 3px rgba(230,126,34,0.1);
    }
    .btn-submit {
        background: linear-gradient(95deg, #e67e22, #f97316);
        color: white;
        font-weight: 700;
        padding: 14px 28px;
        border: none;
        border-radius: 60px;
        cursor: pointer;
        font-size: 1rem;
        transition: transform 0.2s, box-shadow 0.2s;
        width: 100%;
    }
    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(230,126,34,0.3);
    }
    .related-links {
        background: #f8fafc;
        border-radius: 24px;
        padding: 24px;
        margin: 32px 0;
        text-align: center;
    }
    .related-links a {
        display: inline-block;
        margin: 0 10px;
        color: #e67e22;
        text-decoration: none;
        font-weight: 500;
    }
    .related-links a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .contact-hero h1 {
            font-size: 1.6rem;
        }
        .contact-info-card, .contact-form-card {
            padding: 20px;
        }
    }
    /* Premium styling for Privacy Policy page */
    .policy-hero {
        background: linear-gradient(120deg, #eef2ff, #ffffff);
        padding: 40px 0 32px;
        text-align: center;
        border-radius: 0 0 32px 32px;
        margin-bottom: 32px;
    }
    .policy-hero h1 {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f2b3d, #e67e22);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 12px;
    }
    .policy-hero p {
        font-size: 1rem;
        color: #475569;
        max-width: 700px;
        margin: 0 auto;
    }
    .policy-card {
        background: white;
        border-radius: 28px;
        padding: 32px 36px;
        margin: 40px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        border: 1px solid #eef2f6;
    }
    .policy-card h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 28px 0 16px;
        color: #b45309;
        display: flex;
        align-items: center;
        gap: 10px;
        border-left: 4px solid #e67e22;
        padding-left: 18px;
    }
    .policy-card h2:first-of-type {
        margin-top: 0;
    }
    .policy-card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 20px 0 12px;
        color: #1e293b;
    }
    .policy-card p {
        color: #334155;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    .policy-card ul, .policy-card ol {
        margin: 1rem 0 1rem 2rem;
        color: #334155;
    }
    .policy-card li {
        margin-bottom: 0.5rem;
    }
    .last-updated {
        display: inline-block;
        background: #fef3e8;
        padding: 6px 14px;
        border-radius: 40px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #b45309;
        margin: 10px 0 20px;
    }
    .related-links {
        background: #f8fafc;
        border-radius: 24px;
        padding: 20px;
        margin: 32px 0;
        text-align: center;
    }
    .related-links a {
        display: inline-block;
        margin: 0 10px;
        color: #e67e22;
        text-decoration: none;
        font-weight: 500;
    }
    .related-links a:hover {
        text-decoration: underline;
    }
    .disclaimer-box {
        background: #fffbeb;
        border-left: 5px solid #e67e22;
        padding: 18px 22px;
        border-radius: 20px;
        margin: 24px 0;
    }
    @media (max-width: 768px) {
        .policy-card {
            padding: 20px 22px;
        }
        .policy-hero h1 {
            font-size: 1.6rem;
        }
        .policy-card h2 {
            font-size: 1.3rem;
        }
    }

    /* ===== ABOUT PAGE SPECIFIC STYLES (Premium Orange Theme) ===== */
    .about-hero {
        background: linear-gradient(120deg, #eef2ff, #ffffff);
        padding: 40px 0 32px;
        text-align: center;
        border-radius: 0 0 32px 32px;
        margin-bottom: 32px;
    }
    .about-hero h1 {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f2b3d, #e67e22);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 12px;
    }
    .about-hero p {
        font-size: 1.1rem;
        color: #475569;
        max-width: 700px;
        margin: 0 auto;
    }
    .about-card {
        background: white;
        border-radius: 28px;
        padding: 32px 36px;
        margin: 40px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        border: 1px solid #eef2f6;
    }
    .about-card h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 28px 0 16px;
        color: #b45309;
        display: flex;
        align-items: center;
        gap: 10px;
        border-left: 4px solid #e67e22;
        padding-left: 18px;
    }
    .about-card h2:first-of-type {
        margin-top: 0;
    }
    .about-card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 20px 0 12px;
        color: #1e293b;
    }
    .about-card p {
        color: #334155;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    .about-card ul, .about-card ol {
        margin: 1rem 0 1rem 2rem;
        color: #334155;
    }
    .about-card li {
        margin-bottom: 0.5rem;
    }
    .highlight {
        color: #e67e22;
        font-weight: 700;
    }
    .contact-box {
        background: #fef9f0;
        border-left: 5px solid #e67e22;
        border-radius: 20px;
        padding: 20px 24px;
        margin: 32px 0 0;
    }
    .contact-box h3 {
        margin-top: 0;
        color: #b45309;
    }
    .contact-box a {
        color: #e67e22;
        text-decoration: none;
    }
    .contact-box a:hover {
        text-decoration: underline;
    }
    .related-links {
        background: #f8fafc;
        border-radius: 24px;
        padding: 20px;
        margin: 32px 0;
        text-align: center;
    }
    .related-links a {
        display: inline-block;
        margin: 0 10px;
        color: #e67e22;
        text-decoration: none;
        font-weight: 500;
    }
    .related-links a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .about-card {
            padding: 20px 22px;
        }
        .about-hero h1 {
            font-size: 1.6rem;
        }
        .about-card h2 {
            font-size: 1.3rem;
        }
    }

    /* ===== PAGE SPECIFIC STYLES (Answer Key) ===== */
    .page-header {
        background: white;
        padding: 28px 32px;
        margin: 20px 0 28px;
        border-radius: 28px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
        text-align: center;
        border-left: 5px solid #e67e22;
    }
    .page-header h1 {
        font-size: 1.9rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f2b3d, #e67e22);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 12px;
    }
    .intro-text {
        color: #475569;
        font-size: 0.95rem;
        margin: 12px 0;
        line-height: 1.6;
    }
    .intro-text a {
        color: #e67e22;
        text-decoration: none;
        font-weight: 500;
    }
    .intro-text a:hover {
        text-decoration: underline;
    }

    /* Filters */
    .filters {
        background: white;
        border-radius: 28px;
        padding: 24px 28px;
        margin-bottom: 36px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        border: 1px solid #eef2f6;
    }
    .filter-group {
        flex: 1;
        min-width: 180px;
    }
    .filter-group label {
        font-weight: 600;
        display: block;
        margin-bottom: 8px;
        font-size: 0.85rem;
        color: #b45309;
    }
    .filter-group select, .filter-group input {
        width: 100%;
        padding: 12px 16px;
        border-radius: 60px;
        border: 1.5px solid #e2e8f0;
        background: #fefefe;
        font-size: 0.9rem;
        transition: 0.2s;
        outline: none;
    }
    .filter-group select:focus, .filter-group input:focus {
        border-color: #e67e22;
        box-shadow: 0 0 0 3px rgba(230,126,34,0.1);
    }
    .search-box {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .search-box button {
        background: #e67e22;
        border: none;
        padding: 0 22px;
        border-radius: 60px;
        color: white;
        cursor: pointer;
        font-size: 1rem;
        height: 48px;
        transition: 0.2s;
    }
    .search-box button:hover {
        background: #b45309;
    }

    /* Answer Key Cards Grid */
    .answer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 28px;
        margin: 30px 0;
    }
    .answer-card {
        background: white;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
        transition: transform 0.25s ease, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
        border: 1px solid #edf2f7;
    }
    .answer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    }
    .card-header {
        background: #fef9f0;
        padding: 18px 20px;
        border-bottom: 2px solid #ffedd5;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .card-header h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
    }
    .status-badge {
        padding: 5px 14px;
        border-radius: 60px;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.3px;
    }
    .status-released {
        background: #dcfce7;
        color: #166534;
        box-shadow: 0 0 0 1px #bbf7d0;
    }
    .status-expected {
        background: #fff3e3;
        color: #b45309;
        box-shadow: 0 0 0 1px #fed7aa;
    }
    .status-final {
        background: #dbeafe;
        color: #1e40af;
        box-shadow: 0 0 0 1px #bfdbfe;
    }
    .card-body {
        padding: 18px 20px;
        flex: 1;
    }
    .card-details {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .detail-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.85rem;
        color: #334155;
    }
    .detail-item i {
        width: 22px;
        color: #e67e22;
        font-size: 0.9rem;
    }
    .card-footer {
        background: #fefefe;
        padding: 16px 20px;
        border-top: 1px solid #ecf3f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .objection-date {
        font-size: 0.75rem;
        font-weight: 600;
        color: #059669;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .download-btn {
        background: #e67e22;
        color: white;
        text-decoration: none;
        padding: 8px 20px;
        border-radius: 60px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: 0.2s;
    }
    .download-btn:hover {
        background: #b45309;
        transform: translateY(-2px);
    }
    .download-btn.disabled {
        background: #94a3b8;
        pointer-events: none;
        opacity: 0.7;
    }
    /* result css */

    /* Results Grid */
    .results-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 28px;
        margin: 30px 0;
    }
    .result-card {
        background: white;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
        transition: transform 0.25s ease, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
        border: 1px solid #edf2f7;
    }
    .result-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    }
    .card-header {
        background: #fef9f0;
        padding: 18px 20px;
        border-bottom: 2px solid #ffedd5;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .card-header h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
    }
    .status-badge {
        padding: 5px 14px;
        border-radius: 60px;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.3px;
    }
    .status-released {
        background: #dcfce7;
        color: #166534;
        box-shadow: 0 0 0 1px #bbf7d0;
    }
    .status-final {
        background: #dbeafe;
        color: #1e40af;
        box-shadow: 0 0 0 1px #bfdbfe;
    }
    .status-prelim {
        background: #fff3e3;
        color: #b45309;
        box-shadow: 0 0 0 1px #fed7aa;
    }
    .card-body {
        padding: 18px 20px;
        flex: 1;
    }
    .card-details {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .detail-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.85rem;
        color: #334155;
    }
    .detail-item i {
        width: 22px;
        color: #e67e22;
        font-size: 0.9rem;
    }
    .card-footer {
        background: #fefefe;
        padding: 16px 20px;
        border-top: 1px solid #ecf3f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .result-date {
        font-size: 0.75rem;
        font-weight: 600;
        color: #059669;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .view-btn {
        background: #e67e22;
        color: white;
        text-decoration: none;
        padding: 8px 20px;
        border-radius: 60px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: 0.2s;
    }
    .view-btn:hover {
        background: #b45309;
        transform: translateY(-2px);
    }
    /* Admit Cards Grid */
    .admit-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 28px;
        margin: 30px 0;
    }
    .admit-card {
        background: white;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
        transition: transform 0.25s ease, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
        border: 1px solid #edf2f7;
    }
    .admit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    }
    .card-header {
        background: #fef9f0;
        padding: 18px 20px;
        border-bottom: 2px solid #ffedd5;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .card-header h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
    }
    .status-badge {
        padding: 5px 14px;
        border-radius: 60px;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.4px;
    }
    .status-released {
        background: #dcfce7;
        color: #166534;
        box-shadow: 0 0 0 1px #bbf7d0;
    }
    .status-expected {
        background: #fff3e3;
        color: #b45309;
        box-shadow: 0 0 0 1px #fed7aa;
    }
    .status-cancelled {
        background: #fee2e2;
        color: #991b1b;
        box-shadow: 0 0 0 1px #fecaca;
    }
    .card-body {
        padding: 18px 20px;
        flex: 1;
    }
    .card-details {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .detail-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.85rem;
        color: #334155;
    }
    .detail-item i {
        width: 22px;
        color: #e67e22;
        font-size: 0.9rem;
    }
    .card-footer {
        background: #fefefe;
        padding: 16px 20px;
        border-top: 1px solid #ecf3f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .exam-date {
        font-size: 0.75rem;
        font-weight: 600;
        color: #dc2626;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .download-btn {
        background: #e67e22;
        color: white;
        text-decoration: none;
        padding: 8px 20px;
        border-radius: 60px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: 0.2s;
    }
    .download-btn:hover {
        background: #b45309;
        transform: translateY(-2px);
    }
    .download-btn.disabled {
        background: #94a3b8;
        pointer-events: none;
        opacity: 0.7;
    }

    @media (max-width: 768px) {
        .filters {
            flex-direction: column;
            gap: 16px;
        }
        .page-header h1 {
            font-size: 1.5rem;
        }
        .admit-cards-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .card-header {
            flex-direction: column;
            align-items: flex-start;
        }
        .card-footer {
            flex-direction: column;
            align-items: flex-start;
        }
    }
    @media (max-width: 480px) {
        .container {
            padding: 0 16px;
        }
        .links-grid {
            grid-template-columns: 1fr;
        }
    }
     /* ===== PAGE SPECIFIC STYLES (jobs listing) ===== */
    .page-header {
        background: white;
        padding: 20px 20px;
        margin: 16px 0 24px;
        border-radius: 24px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
        text-align: center;
        border-left: 5px solid #e67e22;
    }
    .page-header h2 {
        font-size: 1.7rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f2b3d, #e67e22);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 8px;
    }
    .updated {
        color: #dc2626;
        font-weight: 500;
        background: #fff0f0;
        display: inline-block;
        padding: 6px 16px;
        border-radius: 40px;
        font-size: 0.85rem;
        margin-top: 8px;
    }

    .filters {
        background: white;
        border-radius: 28px;
        padding: 20px 24px;
        margin-bottom: 32px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        border: 1px solid #eef2f6;
    }
    .filter-group {
        flex: 1;
        min-width: 160px;
    }
    .filter-group label {
        font-weight: 600;
        display: block;
        margin-bottom: 8px;
        font-size: 0.85rem;
        color: #b45309;
    }
    .filter-group select, .filter-group input {
        width: 100%;
        padding: 10px 14px;
        border-radius: 40px;
        border: 1.5px solid #e2e8f0;
        background: #fefefe;
        font-size: 0.9rem;
        transition: 0.2s;
        outline: none;
    }
    .filter-group select:focus, .filter-group input:focus {
        border-color: #e67e22;
        box-shadow: 0 0 0 3px rgba(230,126,34,0.1);
    }
    .search-box {
        display: flex;
        gap: 6px;
        align-items: center;
    }
    .search-box button {
        background: #e67e22;
        border: none;
        padding: 0 18px;
        border-radius: 40px;
        color: white;
        cursor: pointer;
        font-size: 1rem;
        transition: 0.2s;
        height: 44px;
    }
    .search-box button:hover {
        background: #b45309;
    }

    .jobs-table {
        background: white;
        border-radius: 28px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        border: 1px solid #edf2f7;
    }
    table {
        width: 100%;
        border-collapse: collapse;
    }
    thead tr {
        background: #fef9f0;
        border-bottom: 2px solid #ffedd5;
    }
    th {
        text-align: left;
        padding: 16px 16px;
        font-weight: 700;
        color: #1e293b;
        font-size: 0.9rem;
    }
    td {
        padding: 18px 16px;
        border-bottom: 1px solid #eef2f8;
        vertical-align: top;
    }
    tr:hover td {
        background-color: #fef9f0;
    }
    .job-title {
        font-weight: 700;
        font-size: 1rem;
        color: #e67e22;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 6px;
    }
    .job-title:hover {
        text-decoration: underline;
        color: #b45309;
    }
    .job-details {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 8px;
        font-size: 0.75rem;
        color: #4a5568;
        align-items: center;
    }
    .job-details i {
        width: 18px;
        color: #e67e22;
    }
    .action-btn {
        background: #e67e22;
        color: white;
        text-decoration: none;
        padding: 8px 18px;
        border-radius: 40px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
        transition: 0.2s;
        white-space: nowrap;
    }
    .action-btn:hover {
        background: #b45309;
        transform: translateY(-1px);
    }
    .badge {
        display: inline-flex;
        align-items: center;
        padding: 4px 12px;
        border-radius: 40px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.3px;
    }
    .badge-new {
        background: #dcfce7;
        color: #166534;
        box-shadow: 0 0 0 1px #bbf7d0;
    }
    .badge-recent {
        background: #fff3e3;
        color: #b45309;
        box-shadow: 0 0 0 1px #fed7aa;
    }
    .badge-regular {
        background: #eef2ff;
        color: #1e40af;
    }
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 40px 0 20px;
        flex-wrap: wrap;
    }
    .pagination a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 60px;
        text-decoration: none;
        color: #e67e22;
        font-weight: 600;
        transition: 0.2s;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        border: 1px solid #e2e8f0;
    }
    .pagination a.active, .pagination a:hover {
        background: #e67e22;
        color: white;
        border-color: #e67e22;
    }

    /* Responsive table to cards */
    @media (max-width: 768px) {
        .filters {
            flex-direction: column;
        }
        .filter-group {
            min-width: 100%;
        }
        .jobs-table table, .jobs-table thead, .jobs-table tbody, .jobs-table th, .jobs-table td, .jobs-table tr {
            display: block;
        }
        .jobs-table thead {
            display: none;
        }
        .jobs-table tbody tr {
            margin-bottom: 20px;
            border: 1px solid #e6edf4;
            border-radius: 24px;
            background: white;
            padding: 12px 0;
        }
        .jobs-table td {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 18px;
            border-bottom: 1px solid #f0f2f5;
            gap: 12px;
            flex-wrap: wrap;
        }
        .jobs-table td:last-child {
            border-bottom: none;
        }
        .jobs-table td::before {
            content: attr(data-label);
            font-weight: 800;
            color: #b45309;
            font-size: 0.75rem;
            min-width: 100px;
            background: #fef9f0;
            padding: 4px 8px;
            border-radius: 20px;
            display: inline-block;
        }
        .jobs-table td:first-child {
            flex-direction: column;
            align-items: flex-start;
        }
        .job-details {
            margin-top: 6px;
            width: 100%;
        }
        .action-btn {
            white-space: normal;
            text-align: center;
        }
    }
    @media (max-width: 480px) {
        .jobs-table td {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }
        .jobs-table td::before {
            min-width: auto;
        }
    }
    /* marketing */

    /* Marketing Cards */
    .marketing-card {
        background: white;
        border-radius: 28px;
        padding: 28px;
        margin: 40px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        border: 1px solid #eef2f6;
    }
    .marketing-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 30px;
        align-items: center;
    }
    .marketing-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
    }
    .marketing-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }
    .image-badge {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: #e67e22;
        color: white;
        padding: 4px 12px;
        border-radius: 40px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    .marketing-content h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
        color: #0f172a;
    }
    .marketing-content ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }
    .marketing-content li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .marketing-content li i {
        width: 24px;
        color: #e67e22;
    }
    .marketing-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #e67e22;
        color: white;
        padding: 12px 28px;
        border-radius: 60px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.2s;
    }
    .marketing-btn:hover {
        background: #b45309;
        transform: translateY(-2px);
    }
    .instagram-card {
        background: linear-gradient(135deg, #fef9f0, #ffffff);
    }
    .instagram-reels-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin: 20px 0;
    }
    .reel-item {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: 0.2s;
    }
    .reel-item:hover {
        transform: translateY(-4px);
    }
    .reel-item img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 9 / 16;
        object-fit: cover;
    }
    .reel-caption {
        padding: 10px;
        font-size: 0.85rem;
        font-weight: 500;
        color: #1e293b;
        text-align: center;
    }
    .reel-link {
        display: block;
        background: #f1f5f9;
        text-align: center;
        padding: 8px;
        text-decoration: none;
        color: #e67e22;
        font-weight: 600;
        font-size: 0.8rem;
        transition: 0.2s;
    }
    .reel-link:hover {
        background: #e67e22;
        color: white;
    }
    .instagram-btn {
        background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
        border: none;
    }
    .instagram-btn:hover {
        background: linear-gradient(45deg, #d62976, #962fbf, #f09433);
    }
     @media (max-width: 768px) {
        .marketing-grid {
            grid-template-columns: 1fr;
        }
        .instagram-reels-grid {
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        }
        .marketing-content h2 {
            font-size: 1.3rem;
        }
    }
    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin: 40px 0 20px;
        flex-wrap: wrap;
    }
    .pagination a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: white;
        border-radius: 60px;
        text-decoration: none;
        color: #e67e22;
        font-weight: 600;
        transition: 0.2s;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        border: 1px solid #e2e8f0;
    }
    .pagination a.active, .pagination a:hover {
        background: #e67e22;
        color: white;
        border-color: #e67e22;
    }

    /* Quick Links */
    .quick-links {
        background: white;
        border-radius: 28px;
        padding: 28px;
        margin: 40px 0 20px;
        border: 1px solid #eef2ff;
    }
    .quick-links h3 {
        color: #b45309;
        font-size: 1.4rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 14px;
    }
    .links-grid a {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #f8fafc;
        padding: 12px 18px;
        border-radius: 60px;
        text-decoration: none;
        color: #1e293b;
        font-weight: 500;
        transition: 0.2s;
        border: 1px solid #eef2ff;
    }
    .links-grid a i {
        color: #e67e22;
    }
    .links-grid a:hover {
        background: #e67e22;
        color: white;
        border-color: #e67e22;
    }
    .links-grid a:hover i {
        color: white;
    }

    @media (max-width: 768px) {
        .filters {
            flex-direction: column;
            gap: 16px;
        }
        .page-header h1 {
            font-size: 1.5rem;
        }
        .answer-grid {
            grid-template-columns: 1fr;
        }
        .card-header {
            flex-direction: column;
            align-items: flex-start;
        }
        .card-footer {
            flex-direction: column;
            align-items: flex-start;
        }
    }


        /* pages */
        .page-header {
        background: white;
        padding: 24px 28px;
        margin: 20px 0 28px;
        border-radius: 28px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
        text-align: center;
        border-left: 5px solid #e67e22;
    }
    .page-header h1 {
        font-size: 1.9rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f2b3d, #e67e22);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 12px;
    }
    .post-date {
        display: inline-block;
        background: #fef3e8;
        padding: 6px 14px;
        border-radius: 40px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #b45309;
        margin: 8px 0 16px;
    }
    .intro-text {
        color: #475569;
        font-size: 1rem;
        margin: 16px 0;
        line-height: 1.6;
    }
    .alert-banner {
        background: linear-gradient(95deg, #e67e22, #f97316);
        border-radius: 20px;
        padding: 16px 24px;
        margin: 24px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        color: white;
    }
    .alert-banner a {
        background: white;
        color: #e67e22;
        padding: 8px 18px;
        border-radius: 60px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        transition: 0.2s;
    }
    .alert-banner a:hover {
        background: #0f172a;
        color: white;
    }
    .section-card {
        background: white;
        border-radius: 28px;
        padding: 24px 28px;
        margin-bottom: 32px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        border: 1px solid #eef2f6;
        transition: 0.2s;
    }
    .section-card:hover {
        box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
    }
    .section-card h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #0f172a;
        border-left: 5px solid #e67e22;
        padding-left: 18px;
    }
    .section-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 20px 0 12px;
        color: #1e293b;
    }
    .table-responsive {
        overflow-x: auto;
        margin: 20px 0;
        border-radius: 20px;
        border: 1px solid #eef2f6;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.95rem;
        min-width: 400px;
    }
    th, td {
        border: 1px solid #e2e8f0;
        padding: 12px 16px;
        text-align: left;
        vertical-align: top;
    }
    th {
        background: #fef9f0;
        font-weight: 700;
        color: #b45309;
    }
    ul, ol {
        margin: 16px 0 16px 1.8rem;
    }
    li {
        margin-bottom: 8px;
    }
    .important-links {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 20px;
    }
    .important-links a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f1f5f9;
        padding: 12px 24px;
        border-radius: 60px;
        text-decoration: none;
        font-weight: 600;
        color: #1e293b;
        transition: 0.2s;
    }
    .important-links a:hover {
        background: #e67e22;
        color: white;
    }
    .faq-item {
        margin-bottom: 20px;
    }
    .faq-question {
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 6px;
    }
    .note-box {
        background: #fffbeb;
        border-left: 5px solid #e67e22;
        padding: 16px 20px;
        border-radius: 20px;
        margin: 20px 0;
    }
    @media (max-width: 768px) {
        .section-card {
            padding: 18px 16px;
        }
        .section-card h2 {
            font-size: 1.4rem;
        }
        .page-header h1 {
            font-size: 1.5rem;
        }
        .alert-banner {
            flex-direction: column;
            text-align: center;
        }
    }        
    /* pages */
    .page-header {
        background: white;
        padding: 28px 32px;
        margin: 20px 0 28px;
        border-radius: 28px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
        text-align: center;
        border-left: 5px solid #e67e22;
    }
    .page-header h1 {
        font-size: 1.9rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f2b3d, #e67e22);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 12px;
    }
    .updated {
        display: inline-block;
        background: #fef3e8;
        padding: 6px 14px;
        border-radius: 40px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #b45309;
        margin: 8px 0 12px;
    }
    .intro-text {
        color: #475569;
        font-size: 0.95rem;
        margin: 12px 0;
        line-height: 1.6;
        text-align: left;
    }
    .intro-text a {
        color: #e67e22;
        text-decoration: none;
    }
    .intro-text a:hover {
        text-decoration: underline;
    }

    .section-card {
        background: white;
        border-radius: 28px;
        padding: 24px 28px;
        margin-bottom: 28px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        border: 1px solid #eef2f6;
        transition: 0.2s;
    }
    .section-card:hover {
        box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
    }
    .section-card h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #b45309;
        border-left: 4px solid #e67e22;
        padding-left: 18px;
    }
    .section-card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 20px 0 12px 0;
        color: #1e293b;
    }
    .highlight-box {
        background: #fffbeb;
        padding: 16px 20px;
        border-radius: 20px;
        border-left: 5px solid #e67e22;
        margin: 20px 0;
    }
    .table-responsive {
        overflow-x: auto;
        margin: 15px 0;
        border-radius: 20px;
        border: 1px solid #eef2f6;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        min-width: 400px;
    }
    th, td {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #eef2f8;
    }
    th {
        background: #fef9f0;
        font-weight: 700;
        color: #b45309;
    }
    tr:hover td {
        background-color: #fef9f0;
    }
    ul, ol {
        margin: 12px 0 12px 24px;
        color: #334155;
    }
    li {
        margin: 8px 0;
    }
    .important-links {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 20px;
    }
    .important-links a {
        background: #f1f5f9;
        padding: 12px 24px;
        border-radius: 60px;
        text-decoration: none;
        color: #1e293b;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: 0.2s;
        border: 1px solid #eef2ff;
    }
    .important-links a:hover {
        background: #e67e22;
        color: white;
        border-color: #e67e22;
    }
    .related-links {
        background: #f8fafc;
        border-radius: 24px;
        padding: 20px;
        margin: 32px 0;
        text-align: center;
    }
    .related-links a {
        display: inline-block;
        margin: 0 10px;
        color: #e67e22;
        text-decoration: none;
        font-weight: 500;
    }
    .related-links a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 1.5rem;
        }
        .section-card {
            padding: 18px;
        }
        .section-card h2 {
            font-size: 1.3rem;
        }
        .important-links a {
            width: 100%;
            justify-content: center;
        }
    }



