        :root {
            --primary: #064c88;
    --secondary: #ffb61d;
            --accent: #4cc9f0;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #2ec4b6;
            --danger: #e71d36;
            --warning: #ff9f1c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: var(--dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }




        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav a:hover::after {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            padding: 80px 0;
            background: url('webpages/images/favicon.png') center/cover;
            background-blend-mode: overlay;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.7), rgba(58, 12, 163, 0.7));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            transform: translateY(50px);
            position: relative;
            z-index: 3;
        }

        .search-form {
            display: grid;
            grid-template-columns: 1fr 1fr 120px;
            gap: 15px;
        }

        .form-group {
            position: relative;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.3);
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234361ee' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.293l4.146-4.147a.5.5 0 0 1 .708.708l-4.5 4.5a.5.5 0 0 1-.708 0l-4.5-4.5a.5.5 0 0 1 .708-.708L8 10.293z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            padding-right: 30px;
        }

        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Opportunities Section */
        .opportunities {
            padding: 100px 0 60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 36px;
            margin-bottom: 15px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 80px;
            height: 4px;
            background: var(--accent);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-header p {
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        .filter-bar {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            padding: 8px 16px;
            border: 2px solid #e9ecef;
            border-radius: 30px;
            background: white;
            color: #495057;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .jobs-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }

        .job-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .job-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .job-header {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
        }

        .job-title-company h3 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .company-name {
            color: #6c757d;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .job-body {
            padding: 20px;
        }

        .job-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }

        .job-detail {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px;
            background: #f8f9fa;
            border-radius: 4px;
            font-size: 13px;
            color: #6c757d;
        }

        .job-description {
            margin-bottom: 20px;
            color: #495057;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .job-tag {
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 20px;
            background-color: #e9ecef;
            color: #495057;
        }

        .job-tag.internship {
            background-color: rgba(76, 201, 240, 0.2);
            color: var(--accent);
        }

        .job-tag.scholarship {
            background-color: rgba(46, 196, 182, 0.2);
            color: var(--success);
        }

        .job-tag.remote {
            background-color: rgba(255, 159, 28, 0.2);
            color: var(--warning);
        }

        .job-tag.urgent {
            background-color: rgba(231, 29, 54, 0.2);
            color: var(--danger);
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-top: 1px solid #e9ecef;
            background-color: #f8f9fa;
        }

        .deadline {
            font-size: 14px;
            color: #6c757d;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .btn-apply {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 8px 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-apply:hover {
            background-color: var(--primary);
            color: white;
        }

        .load-more {
            display: block;
            margin: 40px auto 0;
            padding: 12px 30px;
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .load-more:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #f0f4f8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transition: all 0.4s ease;
            z-index: -1;
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            color: white;
        }

        .feature-card h3 {
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .feature-card p {
            color: #6c757d;
            transition: all 0.4s ease;
        }

        .feature-card:hover h3,
        .feature-card:hover p {
            color: white;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .newsletter-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter h2 {
            margin-bottom: 20px;
        }

        .newsletter p {
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
        }

        /* Footer */
        footer {
            background-color: #212529;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Floating Animation for UI Elements */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .search-form {
                grid-template-columns: 1fr 1fr;
            }
            .btn-search {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            .hero p {
                font-size: 16px;
            }
            .search-form {
                grid-template-columns: 1fr;
            }
            .btn-search {
                grid-column: span 1;
            }
            nav ul {
                gap: 10px;
            }
        }

        /* Loading Animation */
        .loader {
            display: none;
            width: 48px;
            height: 48px;
            border: 5px solid #FFF;
            border-bottom-color: var(--primary);
            border-radius: 50%;
            margin: 0 auto;
            animation: rotation 1s linear infinite;
        }

        @keyframes rotation {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Notification */
        .notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            border-left: 4px solid var(--primary);
            padding: 15px 20px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateX(120%);
            transition: transform 0.4s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification-icon {
            color: var(--primary);
            font-size: 20px;
        }

        .close-notification {
            background: none;
            border: none;
            color: #adb5bd;
            cursor: pointer;
            margin-left: 10px;
        }
    /* Existing styles remain the same */

    /* Add these media queries at the end of the existing styles */

    @media (max-width: 992px) {
        /* Adjusted existing tablet styles */
        .hero h1 {
            font-size: 42px;
        }
        
        .features-grid {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        /* Mobile Navigation */
        nav ul {
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            padding: 10px 0;
        }

        nav a {
            font-size: 14px;
            padding: 6px 10px;
        }

        /* Hero Adjustments */
        .hero {
            padding: 60px 0;
        }

        .hero h1 {
            font-size: 32px;
            line-height: 1.3;
        }

        .hero p {
            font-size: 16px;
            padding: 0 15px;
        }

        .search-container {
            transform: translateY(30px);
            padding: 15px;
        }

        /* Opportunities Section */
        .jobs-container {
            grid-template-columns: 1fr;
        }

        .job-card {
            margin: 0 10px;
        }

        /* Features Section */
        .features {
            padding: 60px 0;
        }

        .feature-card {
            padding: 25px;
        }
    }

    @media (max-width: 480px) {
        /* Mobile-first adjustments */
        .container {
            padding: 0 15px;
        }

        /* Hero Section */
        .hero h1 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 14px;
        }

        .search-form {
            gap: 10px;
        }

        .form-control {
            padding: 10px 12px;
            font-size: 14px;
        }

        .btn {
            padding: 10px 16px;
            font-size: 14px;
        }

        /* Opportunities Section */
        .section-header h2 {
            font-size: 28px;
        }

        .filter-bar {
            gap: 8px;
        }

        .filter-btn {
            padding: 6px 12px;
            font-size: 13px;
        }

        .job-card {
            margin: 0;
        }

        .job-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
        }

        .company-logo {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }

        .job-title-company h3 {
            font-size: 16px;
        }

        .company-name {
            font-size: 13px;
        }

        .job-body {
            padding: 15px;
        }

        .job-description {
            font-size: 14px;
        }

        /* Newsletter Section */
        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-input,
        .newsletter-form .btn {
            width: 100%;
        }

        /* Footer Adjustments */
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }

        .footer-column h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-social {
            justify-content: center;
        }

        /* Utility Adjustments */
        .load-more {
            width: 100%;
            padding: 10px 20px;
        }
    }

    @media (max-width: 360px) {
        /* Small phone adjustments */
        .hero h1 {
            font-size: 24px;
        }

        .filter-bar {
            gap: 6px;
        }

        .filter-btn {
            padding: 5px 10px;
        }

        .job-detail {
            font-size: 12px;
        }

        .deadline {
            font-size: 12px;
        }

        .btn-apply {
            padding: 6px 12px;
            font-size: 13px;
        }
    }



    /* Partners Section */
    .partners {
        padding: 60px 0;
        background: #ffffff;
        overflow: hidden;
    }

    .partners-slider {
        position: relative;
        margin: 0 -20px;
    }

    .partners-track {
        display: flex;
        animation: scroll 40s linear infinite;
        will-change: transform;
    }

    .partner-logo {
        flex: 0 0 200px;
        height: 100px;
        margin: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .partner-logo:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Pause animation on hover */
    .partners-track:hover {
        animation-play-state: paused;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .partner-logo {
            flex: 0 0 150px;
            height: 80px;
            margin: 0 15px;
            font-size: 40px;
        }

        .partners-track {
            animation-duration: 30s;
        }
    }

    @media (max-width: 480px) {
        .partner-logo {
            flex: 0 0 120px;
            height: 60px;
            margin: 0 10px;
            font-size: 32px;
        }

        .partners-track {
            animation-duration: 25s;
        }
    }

    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
        .partners-track {
            animation: none;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
    }

/* Professional opportunities landing page refresh */
.main-content {
    background:
        radial-gradient(circle at top left, rgba(6, 76, 136, 0.10), transparent 34rem),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 45%, #ffffff 100%);
}

.opportunity-hero {
    min-height: 560px;
    padding: 96px 2rem 120px !important;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.opportunity-hero::before {
    background:
        linear-gradient(135deg, rgba(2, 27, 54, 0.92), rgba(6, 76, 136, 0.82)),
        radial-gradient(circle at 78% 20%, rgba(255, 182, 29, 0.32), transparent 22rem);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 6px rgba(255, 182, 29, 0.18);
}

.opportunity-hero h1 {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.3rem, 5vw, 4.9rem);
    line-height: 1.03;
    letter-spacing: -0.06em;
    text-shadow: none;
}

.opportunity-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin: 32px auto 0;
}

.hero-trust-row div {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
}

.hero-trust-row strong,
.hero-trust-row span {
    display: block;
}

.hero-trust-row strong {
    color: #ffffff;
    font-size: 1rem;
}

.hero-trust-row span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.search-container {
    max-width: 980px;
    margin-top: -72px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    transform: none;
}

.search-form {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.8fr) 140px;
}

.form-control {
    min-height: 52px;
    border-color: #d8e2ed;
    border-radius: 14px;
    background-color: #f8fafc;
}

.btn,
.filter-btn,
.load-more {
    border-radius: 14px;
}

.btn-primary,
.btn-search,
.load-more {
    background: linear-gradient(135deg, #064c88, #0b6fb7);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(6, 76, 136, 0.22);
}

.btn-primary:hover,
.btn-search:hover,
.load-more:hover {
    background: linear-gradient(135deg, #063a63, #064c88);
    color: #ffffff;
}

.opportunities {
    padding-top: 80px;
}

.section-header h2 {
    color: #0f172a;
    letter-spacing: -0.035em;
}

.section-header h2::after {
    background: var(--secondary);
}

.section-header p {
    color: #64748b;
    font-size: 1.04rem;
}

.filter-bar {
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.filter-btn {
    border: 0;
    background: transparent;
    color: #475569;
}

.filter-btn:hover,
.filter-btn.active {
    background: #064c88;
    color: #ffffff;
}

.jobs-container {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    align-items: stretch;
}

.job-card {
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.job-card:hover {
    border-color: rgba(6, 76, 136, 0.24);
    box-shadow: 0 24px 55px rgba(6, 76, 136, 0.13);
    transform: translateY(-8px);
}

.company-logo {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
}

.job-title-company h3 {
    color: #0f172a;
    letter-spacing: -0.02em;
}

.company-name,
.job-description,
.job-detail,
.deadline {
    color: #64748b;
}

.job-tag {
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #eef6ff;
    color: #075985;
}

.job-tag.featured {
    border-color: #fed7aa;
    background: #fff7ed;
    color: #9a3412;
}

.skill-tag {
    border-color: #e2e8f0;
    background: #f8fafc;
    color: #334155;
}

.btn-apply {
    border-radius: 12px;
    background: #ffb61d;
    color: #063a63;
    font-weight: 800;
}

.btn-apply:hover {
    background: #f59e0b;
    color: #062f52;
}

.newsletter {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 182, 29, 0.26), transparent 18rem),
        linear-gradient(135deg, #042947, #064c88);
}

.newsletter-eyebrow {
    margin-bottom: 8px;
    color: #ffcf70;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.newsletter-copy {
    max-width: 620px;
    margin: -8px auto 24px;
    color: rgba(255, 255, 255, 0.78);
}

.newsletter-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.96);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .opportunity-hero {
        min-height: auto;
        padding: 72px 1.25rem 100px !important;
    }

    .hero-trust-row {
        grid-template-columns: 1fr;
    }

    .search-container {
        margin-top: -58px;
        border-radius: 18px;
    }

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

    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        border-radius: 24px;
    }

    .filter-btn {
        white-space: nowrap;
    }
}
