
        @font-face {
            font-family: 'Valley Sans';
            src: url('Font/ValleySans-Regular.ttf') format('truetype'),
                url('ValleySans-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Valley Sans';
            src: url('Font/ValleySans-Medium.ttf') format('truetype'),
                url('ValleySans-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 400;
            color: #1a202c;
            background-color: #fafbfc;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .logo {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-weight: 400;
        }

        h2,
        h3,
        h4 {
            font-weight: 500;
        }

        .section-container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Floating Pill Navigation Bar */
        .header {
            position: fixed;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-radius: 9999px;
            z-index: 1000;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 28px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            display: block;
            filter: brightness(0);
            transition: opacity 0.2s ease;
        }

        .logo-img:hover {
            opacity: 0.85;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #475569;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #0d9488;
        }

        .nav-actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .nav-btn-outline,
        .nav-btn-solid,
        .primary-btn {
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
            text-decoration: none;
            padding: 0.5rem 1.1rem;
            border-radius: 9999px;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn-outline {
            color: #0f172a;
            border: 1px solid #cbd5e1;
            background: transparent;
        }

        .nav-btn-outline:hover {
            border-color: #0d9488;
            color: #0d9488;
        }

        .nav-btn-solid,
        .primary-btn {
            background-color: #0d9488;
            color: #ffffff;
            border: 1px solid #0d9488;
        }

        .nav-btn-solid:hover,
        .primary-btn:hover {
            background-color: #0f766e;
            border-color: #0f766e;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }

        /* Mobile Nav Toggle */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.35rem;
            color: #0f172a;
            cursor: pointer;
            padding: 0.25rem;
        }

        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 5rem;
            left: 5%;
            width: 90%;
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            padding: 1.5rem;
            z-index: 999;
            border: 1px solid #e2e8f0;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-drawer.open {
            display: flex;
        }

        .mobile-nav-drawer a {
            text-decoration: none;
            color: #0f172a;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .mobile-nav-drawer a.active {
            color: #0d9488;
        }

        /* ==========================================================================
   Modern White & Teal Mixed Grain / Noise Hero Banner
   ========================================================================== */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            padding: 7rem 2rem 5rem;
            background-color: #f8fafc;
            background-image: radial-gradient(rgba(13, 148, 136, 0.1) 1px, transparent 1px), radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px), linear-gradient(135deg, #f8fafc 0%, #f0fdfa 50%, #e6fffa 100%);
            background-size: 20px 20px, 40px 40px, 100% 100%;
            background-position: 0 0, 10px 10px, 0 0;
            text-align: center;
            overflow: hidden;
            border-bottom: 1px solid #e2e8f0;
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, rgba(13, 148, 136, 0.05) 50%, transparent 80%);
            filter: blur(70px);
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            max-width: 940px;
            margin: 0 auto;
            z-index: 2;
        }

        .hero-badge,
        .hero-tag-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ccfbf1;
            color: #0f766e;
            padding: 0.45rem 1.25rem;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            border: 1px solid #99f6e4;
            letter-spacing: 0.5px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 500;
            color: #0f172a;
            margin-bottom: 0.75rem;
            line-height: 1.15;
            letter-spacing: -0.01em;
        }

        .hero-content h1 .highlight {
            color: #0d9488;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: #475569;
            margin-bottom: 0.75rem;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.65;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .hero-primary-btn {
            background-color: #0d9488;
            color: #ffffff;
            border: 1px solid #0d9488;
            font-weight: 500;
            text-decoration: none;
            padding: 0.75rem 1.85rem;
            border-radius: 9999px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-primary-btn:hover {
            background-color: #0f766e;
            border-color: #0f766e;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }

        .hero-secondary-btn {
            background: #ffffff;
            color: #0f172a;
            border: 1px solid #cbd5e1;
            font-weight: 500;
            text-decoration: none;
            padding: 0.75rem 1.85rem;
            border-radius: 9999px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-secondary-btn:hover {
            border-color: #0d9488;
            color: #0d9488;
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
        }

        .candidate-perks-strip {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            margin-top: 3.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .candidate-perk {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #cbd5e1;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .candidate-perk i {
            color: #2dd4bf;
        }

        /* ==========================================================================
   Leadership Searches List
   ========================================================================== */
        .mandates-section {
            padding: 6rem 2rem;
            background: #ffffff;
        }

        .mandates-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .mandates-header-text h2 {
            font-size: 2.2rem;
            color: #0f172a;
            font-weight: 500;
            margin-bottom: 0.35rem;
        }

        .mandates-header-text p {
            color: #64748b;
            font-size: 1rem;
        }

        .mandates-controls {
            display: flex;
            gap: 1rem;
            width: 100%;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .mandate-search-input {
            flex: 1.5;
            min-width: 250px;
            padding: 0.75rem 1.25rem;
            border-radius: 9999px;
            border: 1px solid #cbd5e1;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }

        .mandate-search-input:focus {
            border-color: #0d9488;
        }

        .mandate-select {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.25rem;
            border-radius: 9999px;
            border: 1px solid #cbd5e1;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            outline: none;
            background: #ffffff;
            cursor: pointer;
        }

        .mandate-select:focus {
            border-color: #0d9488;
        }

        .mandates-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mandate-card {
            background: #fafbfc;
            border: 1px solid #e2e8f0;
            border-radius: 1.25rem;
            padding: 2rem 2.5rem;
            transition: all 0.25s ease;
            display: grid;
            grid-template-columns: 2fr 1fr auto;
            align-items: center;
            gap: 2rem;
        }

        .mandate-card:hover {
            background: #ffffff;
            border-color: #0d9488;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
            transform: translateY(-2px);
        }

        .mandate-main h3 {
            font-size: 1.35rem;
            color: #0f172a;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .mandate-main p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.55;
            margin-bottom: 1rem;
        }

        .mandate-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .mandate-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            background: #f1f5f9;
            color: #475569;
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
        }

        .mandate-tag.location {
            background: rgba(13, 148, 136, 0.08);
            color: #0d9488;
        }

        .mandate-details-col {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            font-size: 0.875rem;
            color: #64748b;
        }

        .mandate-details-col strong {
            color: #0f172a;
        }

        .apply-mandate-btn {
            background: #0d9488;
            color: #ffffff;
            border: none;
            padding: 0.65rem 1.5rem;
            border-radius: 9999px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .apply-mandate-btn:hover {
            background: #0f766e;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
            transform: translateY(-1px);
        }

        /* ==========================================================================
   Upload Resume Form (UI-Optimized Drag & Drop)
   ========================================================================== */
        .resume-section {
            padding: 6.5rem 2rem 10rem;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }

        .resume-wrapper {
            max-width: 860px;
            margin: 0 auto;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1.75rem;
            padding: 4rem 3.5rem;
            box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
        }

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

        .badge-pill-light {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(13, 148, 136, 0.1);
            color: #0d9488;
            padding: 0.4rem 1.1rem;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .resume-header h2 {
            font-size: 2.25rem;
            color: #0f172a;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .resume-header p {
            color: #64748b;
            font-size: 1.05rem;
            max-width: 650px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.75rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #334155;
        }

        .form-input,
        .form-select {
            padding: 0.85rem 1.25rem;
            border-radius: 0.75rem;
            border: 1px solid #cbd5e1;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            color: #0f172a;
            background: #ffffff;
            outline: none;
            transition: all 0.2s ease;
        }

        .form-input:focus,
        .form-select:focus {
            border-color: #0d9488;
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
        }

        /* Drag & Drop Zone */
        .dropzone-container {
            border: 2px dashed #cbd5e1;
            border-radius: 1.25rem;
            padding: 3rem 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s ease;
            background: #fafbfc;
            margin-bottom: 1.75rem;
            position: relative;
        }

        .dropzone-container:hover,
        .dropzone-container.dragover {
            border-color: #0d9488;
            background: rgba(13, 148, 136, 0.04);
            box-shadow: 0 0 20px rgba(13, 148, 136, 0.12);
        }

        .dropzone-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(13, 148, 136, 0.1);
            color: #0d9488;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin: 0 auto 1.25rem;
            transition: transform 0.2s;
        }

        .dropzone-container:hover .dropzone-icon {
            transform: scale(1.08);
        }

        .dropzone-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.35rem;
        }

        .dropzone-desc {
            font-size: 0.875rem;
            color: #64748b;
        }

        .file-input-hidden {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .file-preview-card {
            display: none;
            align-items: center;
            justify-content: space-between;
            background: #ffffff;
            border: 1px solid #0d9488;
            border-radius: 0.85rem;
            padding: 0.85rem 1.25rem;
            margin-top: 1rem;
        }

        .file-preview-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .file-preview-info i {
            color: #0d9488;
            font-size: 1.25rem;
        }

        .file-name-text {
            font-weight: 600;
            color: #0f172a;
            font-size: 0.95rem;
        }

        .file-size-text {
            color: #94a3b8;
            font-size: 0.8rem;
        }

        .remove-file-btn {
            background: none;
            border: none;
            color: #ef4444;
            cursor: pointer;
            font-size: 1rem;
        }

        .confidential-check {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.875rem;
            color: #475569;
            margin-bottom: 2rem;
            line-height: 1.45;
        }

        .confidential-check input {
            margin-top: 0.25rem;
            accent-color: #0d9488;
        }

        .submit-profile-btn {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1.05rem;
            border-radius: 9999px;
            cursor: pointer;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(8px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .modal-card {
            background: #ffffff;
            border-radius: 1.5rem;
            padding: 3rem;
            max-width: 500px;
            width: 100%;
            text-align: center;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .modal-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(13, 148, 136, 0.1);
            color: #0d9488;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        .modal-card h3 {
            font-size: 1.75rem;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }

        .modal-card p {
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* FAQ */
        .faq-section {
            padding: 6rem 2rem 18rem 2rem;
            /* 18rem bottom padding ensures 8rem+ clear space before overlapping floating CTA banner */
            background: #ffffff;
        }

        .faq-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 3.5rem;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1040px;
            margin: 0 auto;
        }

        .faq-item {
            padding: 2rem;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
        }

        .faq-item h4 {
            font-size: 1.15rem;
            color: #0f172a;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .faq-item p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.55;
            margin: 0;
        }

        /* Overlapping Floating CTA Card & Footer */
        .cta-footer-wrapper {
            position: relative;
            width: 100%;
            min-height: 65vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(180deg, #090d16 0%, #060910 100%);
            overflow: visible;
            box-sizing: border-box;
            padding-top: 0;
        }

        .footer-ambient-glow {
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 380px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, rgba(14, 116, 144, 0.04) 60%, transparent 100%);
            filter: blur(80px);
            pointer-events: none;
            z-index: 1;
        }

        .cta-floating-container {
            position: relative;
            z-index: 10;
            width: 100%;
            margin-top: -160px;
            margin-bottom: 0;
        }

        .cta-banner-card {
            background: #ffffff;
            border-radius: 1.5rem;
            padding: 3.5rem 4rem;
            min-height: 340px;
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 3.5rem;
            align-items: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.8);
            position: relative;
            box-sizing: border-box;
        }

        .cta-banner-content h2 {
            font-size: clamp(1.9rem, 2.6vw, 2.4rem);
            font-weight: 500;
            color: #0f172a;
            margin-bottom: 0.85rem;
            line-height: 1.2;
        }

        .cta-banner-content p {
            color: #475569;
            font-size: 1.05rem;
            margin-bottom: 1.75rem;
            line-height: 1.5;
        }

        .cta-banner-image {
            border-radius: 1rem;
            overflow: hidden;
            height: 270px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .cta-banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .site-footer {
            position: relative;
            z-index: 2;
            width: 100%;
            background: transparent;
            padding-top: 5rem;
            padding-bottom: 2.5rem;
            color: #94a3b8;
            box-sizing: border-box;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-logo {
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
        }

        .footer-logo-img {
            height: 32px;
            width: auto;
            max-width: 170px;
            object-fit: contain;
            display: block;
        }

        .footer-col p {
            font-size: 0.875rem;
            line-height: 1.55;
            margin-bottom: 1rem;
            color: #94a3b8;
        }

        .footer-socials {
            display: flex;
            gap: 1.25rem;
        }

        .footer-socials a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .footer-socials a:hover {
            color: #2dd4bf;
        }

        .footer-col h4 {
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            padding-top: 1.5rem;
            background: transparent;
        }

        .footer-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: #64748b;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-legal a:hover {
            color: #cbd5e1;
        }

        @media(max-width: 1024px) {
            .mandate-card {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width: 900px) {

            .nav-links,
            .nav-actions {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .resume-wrapper {
                padding: 2.5rem 1.5rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .cta-floating-container {
                margin-top: -100px;
            }

            .cta-banner-card {
                grid-template-columns: 1fr;
                padding: 2.5rem 2rem;
                gap: 2rem;
                min-height: auto;
            }

            .cta-banner-image {
                height: 220px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .candidate-perks-strip {
                gap: 1.5rem;
            }
        }

        @media(max-width: 640px) {
            .candidate-perks-strip {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .mandates-controls {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom-inner {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
    