/* CSS Reset & Variables */
        :root {
            --primary: #007749; /* SA Green */
            --secondary: #FFB81C; /* SA Yellow */
            --accent: #E03C31; /* SA Red */
            --dark: #001489; /* SA Blue */
            --light: #f4f7f6;
            --text: #333;
            --gray: #666;
            --light-gray: #e0e0e0;
            --black: #000000;
        }

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

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            font-size: 16px;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 4px solid var(--primary);
        }

        .sa-stripe {
            height: 6px; 
            background: linear-gradient(to right, var(--primary) 25%, var(--secondary) 25% 50%, var(--accent) 50% 75%, var(--dark) 75%); 
            width: 100%; 
            position: absolute; 
            top: 0; 
            left: 0;
        }

        .brand-container {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .brand-container img {
            height: 70px;
            object-fit: contain;
        }

        .brand-titles h1 {
            font-size: 1.5rem;
            color: var(--dark);
            line-height: 1.1;
        }

        .brand-titles span {
            font-size: 0.8rem;
            color: var(--gray);
            font-weight: 600;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            margin-left: 20px;
            transition: all 0.3s;
            padding: 8px 16px;
            border-radius: 20px;
        }

        nav a:hover, nav a.active {
            background: #e8f5e9;
            color: var(--primary);
        }

        /* Views */
        .view {
            display: none;
        }

        /* Hero Sections */
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, #002244 100%);
            color: white;
            padding: 4rem 5%;
            text-align: center;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .hero-small {
            padding: 2.5rem 5%;
        }

        .hero-small h2 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
        }

        .hero-small p {
            margin-bottom: 0;
        }

        /* Search Container */
        .search-container {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            max-width: 1100px;
            margin: 0 auto;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            border-top: 5px solid var(--secondary);
        }

        .search-container input, 
        .search-container select {
            flex: 1;
            min-width: 150px;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #ddd;
            transition: border-color 0.2s, box-shadow 0.2s;
            font-size: 1rem;
            color: var(--text);
            outline: none;
        }

        button:focus, input:focus, select:focus {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }

        .search-container input:focus, 
        .search-container select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 119, 73, 0.2);
        }

        .search-container button {
            background: var(--secondary);
            color: var(--black);
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            min-width: 120px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .search-container button:hover {
            background: #e6a619;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        /* Main Content & Pages */
        .main-content {
            padding: 3rem 5%;
            max-width: 1200px;
            margin: 0 auto;
            flex: 1;
            width: 100%;
        }

        .page-content {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .page-content h3 {
            color: var(--dark);
            margin: 25px 0 15px;
            font-size: 1.5rem;
            border-bottom: 1px solid var(--light-gray);
            padding-bottom: 8px;
        }

        .page-content h3:first-child {
            margin-top: 0;
        }

        .page-content p {
            margin-bottom: 15px;
            color: #444;
        }

        .page-content ul {
            margin-left: 25px;
            margin-bottom: 20px;
            color: #444;
        }

        .page-content li {
            margin-bottom: 8px;
        }

        /* Jobs Header */
        .jobs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--light-gray);
            padding-bottom: 1rem;
            flex-wrap: wrap;
            gap: 15px;
        }

        .jobs-header h3 {
            font-size: 1.5rem;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .job-count {
            background: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        /* Job Grid */
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }

        .job-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #eee;
            border-top: 6px solid var(--primary);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .job-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .job-card.truck { border-top-color: var(--dark); }
        .job-card.general { border-top-color: var(--primary); }

        .job-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .job-source {
            font-size: 0.75rem;
            background: #f0f0f0;
            padding: 4px 10px;
            border-radius: 12px;
            color: #555;
            font-weight: 600;
            border: 1px solid #ddd;
        }

        .job-title {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .job-company {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .job-location {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .job-category {
            display: inline-block;
            font-size: 0.8rem;
            padding: 3px 8px;
            border-radius: 4px;
            background: #e8f5e9;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .job-card.truck .job-category {
            background: #fff8e1;
            color: #b38000;
        }

        .job-details-section {
            margin: 15px 0; 
            padding: 15px 0; 
            border-top: 1px solid #eee; 
            border-bottom: 1px solid #eee; 
            font-size: 0.9rem; 
            color: #444;
        }

        .job-details-section p {
            font-weight: bold; 
            color: var(--primary); 
            margin-bottom: 5px;
        }

        .job-details-section ul {
            margin-left: 20px; 
            margin-bottom: 10px;
        }

        .job-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
        }

        .job-date {
            font-size: 0.85rem;
            color: #999;
        }

        .apply-btn {
            text-decoration: none;
            background: var(--accent);
            color: #fff;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(224, 60, 49, 0.3);
            display: inline-block;
            text-align: center;
        }

        .apply-btn:hover {
            background: #c32d24;
            box-shadow: 0 6px 12px rgba(224, 60, 49, 0.4);
            transform: translateY(-2px);
        }

        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem;
            background: #fff;
            border-radius: 8px;
            color: var(--gray);
            font-size: 1.2rem;
        }

        /* Contact Form */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid var(--light-gray);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form input, 
        .contact-form textarea {
            padding: 12px;
            border: 1px solid var(--light-gray);
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            width: 100%;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button {
            background: var(--dark);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 4px;
            font-size: 1.1rem;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }

        .contact-form button:hover {
            background: #001166;
        }

        /* Footer */
        footer {
            background: #fff;
            text-align: center;
            padding: 2.5rem 5%;
            color: var(--gray);
            margin-top: auto;
            border-top: 1px solid var(--light-gray);
        }

        footer p { margin: 5px 0; }
        footer .rasedi {
            color: var(--dark);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .footer-links {
            margin-top: 15px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            margin: 0 10px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .page-btn {
            background: #fff;
            border: 2px solid var(--light-gray);
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            color: var(--dark);
            transition: all 0.2s;
            font-size: 1rem;
        }
        .page-btn:hover:not(:disabled) {
            background: #e8f5e9;
            border-color: var(--primary);
            color: var(--primary);
        }
        .page-btn.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: #f9f9f9;
        }

        /* Responsive */
        @media(max-width: 900px) {
            .search-container { flex-direction: column; }
            .search-container input, .search-container select, .search-container button { width: 100%; }
            .contact-container { grid-template-columns: 1fr; }
        }

        @media(max-width: 600px) {
            header { flex-direction: column; gap: 15px; }
            nav { flex-wrap: wrap; justify-content: center; gap: 15px; }
            nav a { margin: 0; }
        }
    
        /* Blog & AdSense Styles */
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; margin-top: 20px; }
        .blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid #eee; transition: transform 0.2s; cursor: pointer; display: flex; flex-direction: column; }
        .blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
        .blog-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255,255,255,0.7); font-weight: bold; letter-spacing: 2px; text-transform: uppercase; background: linear-gradient(135deg, var(--dark), var(--primary)); }
        .blog-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
        .blog-category-tag { background: var(--secondary); color: var(--black); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; display: inline-block; margin-bottom: 15px; align-self: flex-start; }
        .blog-title { font-size: 1.4rem; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
        .blog-excerpt { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
        .blog-meta { font-size: 0.85rem; color: #888; border-top: 1px solid #eee; padding-top: 15px; display: flex; justify-content: space-between; }
        
        .article-header { text-align: center; padding: 30px 0; border-bottom: 2px solid var(--light-gray); margin-bottom: 40px; }
        .article-title { font-size: 2.8rem; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
        .article-meta { color: var(--gray); font-size: 1.1rem; font-weight: 600; }
        .article-body { max-width: 800px; margin: 0 auto; font-size: 1.15rem; line-height: 1.8; color: #333; }
        .article-body h2 { color: var(--primary); margin: 40px 0 20px; font-size: 1.8rem; }
        .article-body p { margin-bottom: 25px; }
        
        .article-author-box { max-width: 800px; margin: 60px auto 0; padding: 25px; background: #f9f9f9; border-left: 6px solid var(--primary); border-radius: 8px; display: flex; gap: 20px; align-items: center; }
        .author-avatar { font-size: 3rem; background: #ddd; width: 70px; height: 70px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
        
        .cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(17, 17, 17, 0.95); color: #fff; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 9999; box-shadow: 0 -5px 15px rgba(0,0,0,0.2); backdrop-filter: blur(5px); }
        .cookie-banner p { margin: 0; font-size: 0.95rem; line-height: 1.5; max-width: 800px; }
        .cookie-banner button { background: var(--secondary); color: #000; border: none; padding: 10px 25px; border-radius: 6px; font-weight: bold; font-size: 1rem; cursor: pointer; transition: background 0.3s; }
        .cookie-banner button:hover { background: #e6a619; }

        @media(max-width: 768px) {
            .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
            .article-title { font-size: 2rem; }
        }