        /* Base Styles */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8fafc;
            color: #334155;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            min-height: 80vh;
        }
        .text-center { text-align: center; }
        .text-theme { color: #0052cc; } /* AssignTutor Primary Blue */
        .section-padding { padding: 60px 0; }

        /* Alerts */
        .alert { padding: 15px; margin-top: 30px; border-radius: 6px; font-weight: 600; font-size: 15px; }
        .success { background: #e8f8f5; color: #27ae60; border-left: 4px solid #2ecc71; }
        .error { background: #fdedec; color: #e74c3c; border-left: 4px solid #e74c3c; }

        /* Hero Section */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            padding: 30px 20px;
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
        }
        .hero-content { flex: 1; }
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #0b2146; /* AssignTutor Navy Blue */
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-content p {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 500px;
        }
        .hero-image { flex: 1; text-align: right; }
        .hero-image img { max-width: 100%; height: auto; border-radius: 12px; }

        /* Section Headings */
        .section-heading {
            font-size: 2rem;
            font-weight: 700;
            color: #0b2146;
            margin-bottom: 10px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        .section-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0052cc, #2ecc71);
            border-radius: 4px;
        }

        /* --- Two-Part Why Choose Us --- */
        .why-split-container {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }
        .why-column {
            flex: 1;
        }
        .why-column-title {
            font-size: 1.4rem;
            color: #0b2146;
            margin-bottom: 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .why-column-title i { color: #0052cc; }
        .why-grid-inner {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .why-card {
            background: #fff;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.04);
            border: 1px solid #e2e8f0;
            display: flex;
            gap: 18px;
            align-items: flex-start;
            transition: transform 0.3s ease;
        }
        .why-card:hover {
            transform: translateX(5px);
            border-color: #cbd5e0;
        }
        .why-icon {
            background: #f8fafc;
            color: #0052cc;
            padding: 15px;
            border-radius: 50%;
            display: inline-flex;
            border: 2px solid #e2e8f0;
            flex-shrink: 0;
        }
        .why-card h4 { margin: 0 0 5px 0; color: #0b2146; font-size: 1.05rem;}
        .why-card p { margin: 0; font-size: 0.95rem; color: #4a5568; line-height: 1.5; }

        /* --- Job Cards --- */
        .job-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        .job-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: #cbd5e0;
        }
        .job-card-header {
            padding: 20px 20px 10px 20px;
            border-bottom: 1px solid #f0f4f8;
        }
        .job-category {
            display: inline-block;
            background: linear-gradient(135deg, #0052cc, #0b2146);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .job-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0b2146;
            margin: 0;
            line-height: 1.4;
        }
        .job-card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .job-desc {
            font-size: 0.9rem;
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .job-highlights {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
        }
        .highlight-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: #4a5568;
            font-weight: 500;
        }
        .highlight-icon { color: #f39c12; min-width: 15px; }
        
        .job-card-footer {
            padding: 20px;
            background: #fff;
            border-top: 1px solid #edf2f7;
        }
        .btn-apply {
            display: block;
            text-align: center;
            background: #0052cc;
            color: #fff;
            text-decoration: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s;
            box-shadow: 0 4px 6px rgba(0, 82, 204, 0.2);
            width: 100%;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .btn-apply:hover {
            background: #0b2146;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(11, 33, 70, 0.3);
        }

        /* --- Modal Styles --- */
        .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(11,33,70,0.6); backdrop-filter: blur(4px); overflow-y: auto;}
        .modal-content { background-color: #fff; margin: 5% auto; padding: 30px; border-radius: 12px; width: 90%; max-width: 500px; position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
        .close-btn { position: absolute; top: 15px; right: 20px; color: #a0aec0; font-size: 28px; font-weight: bold; cursor: pointer; transition: 0.2s;}
        .close-btn:hover { color: #0b2146; }
        .form-group { margin-bottom: 15px; }
        .form-group label { display: block; font-size: 14px; font-weight: 600; color: #0b2146; margin-bottom: 5px; }
        .form-control { width: 100%; padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; box-sizing: border-box; font-family: inherit; font-size: 14px;}
        .form-control:focus { outline: none; border-color: #0052cc; box-shadow: 0 0 0 3px rgba(0,82,204,0.1); }

        /* About Section */
        .about-section {
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 60px 0;
            background: #fff;
        }
        .about-image { flex: 1; text-align: center; }
        .about-image img { max-width: 100%; height: auto; border-radius: 12px; }
        .about-content { flex: 1; }
        .about-content h2 { font-size: 2rem; color: #0b2146; margin-bottom: 20px; position: relative; padding-bottom: 15px;}
        .about-content h2::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: #0052cc; border-radius: 4px;
        }
        .about-content p { color: #4a5568; margin-bottom: 15px; font-size: 1rem; line-height: 1.7;}
        .about-content a { color: #0052cc; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 10px;}
        .about-content a:hover { text-decoration: underline; }

        @media (max-width: 768px) {
            .hero-section, .about-section { flex-direction: column; text-align: center; }
            .hero-image { margin-top: 30px; }
            .about-content h2::after { left: 50%; transform: translateX(-50%); }
            .why-split-container { flex-direction: column; gap: 30px; }
            .job-grid { grid-template-columns: 1fr; }
        }