        

        html {
            scroll-behavior: smooth;
        }

        

        

        

        

        

        

        

        .hero {
            background: linear-gradient(135deg, #0284c7 0%, #14b8a6 100%);
            color: white;
            padding: 4rem 1.5rem;
            text-align: center;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 2rem;
            backdrop-filter: blur(10px);
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        .section {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #075985;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0284c7, #14b8a6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            border-color: #0284c7;
            box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: #075985;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: #6b7280;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            color: #0284c7;
            text-decoration: none;
            font-weight: 600;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .feature-link:hover {
            gap: 1rem;
        }

        .arrow {
            display: inline-block;
            font-size: 1.2rem;
        }

        .checklist-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
            border-left: 4px solid #14b8a6;
            border-radius: 8px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .checklist-box h3 {
            color: #075985;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .checklist-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        .checklist-item::before {
            content: '✓';
            color: #14b8a6;
            font-weight: 700;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .salary-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            overflow-x: auto;
            display: block;
        }

        .salary-table thead {
            background: #075985;
            color: white;
        }

        .salary-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .salary-table td {
            padding: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .salary-table tbody tr:hover {
            background: #f9fafb;
        }

        .salary-table tbody tr:nth-child(even) {
            background: #f3f4f6;
        }

        .cta-button {
            display: inline-block;
            background: #f97316;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            background: #ea580c;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
        }

        .cta-section {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: white;
            padding: 3rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
        }

        .cta-section h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .faq-section {
            margin: 3rem 0;
        }

        .faq-item {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }

        .faq-question {
            font-weight: 600;
            color: #075985;
            margin-bottom: 0.75rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: '▼';
            transition: transform 0.3s;
            font-size: 0.8rem;
        }

        .faq-item.open .faq-question::after {
            transform: rotate(180deg);
        }

        .faq-answer {
            color: #6b7280;
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        

        

        

        

        

        

        @media (max-width: 768px) {
            

            .stats-bar {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

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

            .hero {
                padding: 2.5rem 1.5rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .salary-table {
                font-size: 0.85rem;
            }

            .salary-table th,
            .salary-table td {
                padding: 0.75rem;
            }

            .cta-section {
                padding: 2rem 1.5rem;
            }

            .cta-section h2 {
                font-size: 1.3rem;
            }
        }

/* Explicit heading colors — main.css h1/h2{color:gray-900} overrides inherited white (see hero_banner_system) */
.hero h1 { color: #ffffff; }
.hero p { color: #ffffff; }
.cta-section h2 { color: #ffffff; }
.cta-section p { color: #ffffff; }

/* Standard site button (HTML uses .btn-primary; mirror of local-pages.css) */
.btn-primary { display: inline-block; background: #0284c7; color: #fff; font-weight: 600; padding: 0.8rem 1.6rem; border-radius: 8px; text-decoration: none; transition: background 0.15s ease; }
.btn-primary:hover { background: #075985; }
.cta-section .btn-primary { background: #fff; color: #ea580c; }
.cta-section .btn-primary:hover { background: #fff7ed; }
