.page-wrapper {
        background: linear-gradient(180deg, #FDFBF7 0%, #F3EAE0 100%);
        min-height: calc(100vh - 120px);
        padding: clamp(24px, 5vw, 40px) clamp(12px, 3vw, 16px) 60px;
    }

    .top-nav-bar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .btn-nav-back {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #475569;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        background: #ffffff;
        border: 1px solid #cbd5e1;
        padding: 7px 14px;
        border-radius: 6px;
        transition: all 0.15s ease;
        margin-bottom: 1rem;
    }

    .btn-nav-back:hover {
        background: #f8fafc;
        border-color: #94a3b8;
        color: #0f172a;
    }

    .about-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .about-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .about-header h2 {
        font-size: clamp(1.7rem, 5vw, 2.25rem);
        font-weight: 800;
        color: #1F2937;
        margin-bottom: 0.5rem;
        letter-spacing: -0.02em;
    }

    .about-header p {
        color: #6B7280;
        font-size: 1.05rem;
    }

    .about-card {
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 5px;
        padding: clamp(1.25rem, 4vw, 2.25rem) clamp(1rem, 4vw, 2.5rem);
        box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.03);
        margin-bottom: 2rem;
    }

    .about-card h3 {
        font-size: clamp(1.08rem, 2vw, 1.35rem);
        font-weight: 700;
        color: #1F2937;
        margin-bottom: 1rem;
        border-bottom: 2px solid #F3F4F6;
        padding-bottom: 0.5rem;
    }

    .about-card p,
    .about-card li {
        color: #374151;
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .about-helpdesk-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.5rem; padding:.25rem 0; color:#374151; }
    .about-helpdesk-grid > div { display:flex; flex-direction:column; gap:.3rem; line-height:1.55; }
    .about-helpdesk-details a { color:inherit; font-weight:600; text-decoration:none; }
    .about-helpdesk-details a:hover { text-decoration:underline; }
    .about-helpdesk-details span { color:#6B7280; font-size:.92rem; }

    @media (max-width: 600px) {
        .about-helpdesk-grid { grid-template-columns:1fr; gap:.85rem; }
    }

    .guidelines-ol {
        padding-left: 1.25rem;
        margin-bottom: 0;
    }

    .guidelines-ol>li {
        margin-bottom: 0.85rem;
        padding-left: 0.35rem;
    }

    .guidelines-nested-ul {
        list-style-type: disc;
        padding-left: 1.5rem;
        margin-top: 0.35rem;
        margin-bottom: 0.35rem;
    }

    .guidelines-nested-ul li {
        margin-bottom: 0.25rem;
    }

    /* AUTHORITIES CARDS & IMAGES STYLING */
    .authority-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .authority-box {
        background: #F9FAFB;
        border: 1px solid #E5E7EB;
        border-radius: 0.85rem;
        padding: 1.75rem 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .officer-photo-wrapper {
        width: 140px;
        height: 160px;
        margin-bottom: 1rem;
        border-radius: 0.5rem;
        overflow: hidden;
        border: 1px solid #D1D5DB;
        background: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    }

    .officer-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .authority-box h4 {
        margin-top: 0;
        color: #111827;
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.2rem;
        text-transform: uppercase;
    }

    .authority-box .officer-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: #111827;
        margin-top: 0.4rem;
        margin-bottom: 0.2rem;
    }

    .authority-box .officer-designation {
        font-size: 0.92rem;
        font-weight: 600;
        color: #4B5563;
        margin-bottom: 0.75rem;
    }

    .authority-box .officer-contact {
        width: 100%;
        font-size: 0.875rem;
        color: #6B7280;
        border-top: 1px solid #E5E7EB;
        padding-top: 0.85rem;
        margin-top: auto;
    }

    .authority-box .officer-contact a {
        color: #d9534f;
        text-decoration: none;
        font-weight: 600;
    }

    .authority-box .officer-contact a:hover {
        text-decoration: underline;
    }

    .badge-role {
        display: inline-block;
        background-color: #FEE2E2;
        color: #DC2626;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 0.2rem 0.6rem;
        border-radius: 0.35rem;
        margin-bottom: 0.85rem;
    }

    /* DOCUMENTS LIST STYLING */
    .doc-list {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        margin-top: 1rem;
    }

    .doc-icon {
        color: #d9534f;
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }

    
    .doc-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        background: #F8FAFC;
        border: 1px solid #E2E8F0;
        border-radius: 0.6rem;
        text-decoration: none;
        color: #1E293B;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }

    .doc-item:hover {
        background: #eef2f7 !important;
        border-color: #64748b !important;
        color: #0f172a !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14) !important;
        transform: translateY(-2px) !important;
    }

    .doc-item:hover .doc-icon { color: #475569; }

    .doc-item > div { min-width: 0; flex: 1 1 auto; display: flex; align-items: center; overflow: hidden; }
    .doc-item > div > span:last-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .doc-item > .doc-view-full, .doc-item > .doc-view-short { flex: 0 0 auto; margin-left: 1rem; white-space: nowrap; }

    .doc-view-short { display: none; }

    @media (max-width: 600px) {
        .doc-view-full { display: none; }
        .doc-view-short { display: inline; }
    }

    
