:root {
            --primary-orange: #FF8C00;
            --bright-orange: #FF9500;
            --light-orange: #FFB366;
            --dark-navy: #1a2332;
            --light-gray: #f8f9fa;
            --text-dark: #2d3748;
            --text-light: #718096;
            --white: #ffffff;
            --success-green: #28a745;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header Styles */
        .top-bar {
            background: #0062b4 !important;
            color: white;
            padding: 0.7rem 0;
            font-size: 0.9rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-weight: 500;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .emergency-number {
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .navbar {
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            /* padding: 1rem 0; */
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark-navy);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .truck-logo {
            background: var(--primary-orange);
            color: white;
            padding: 0.5rem;
            border-radius: 10px;
            margin-right: 0.7rem;
            font-size: 1.5rem;
        }

        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--text-dark);
            margin: 0 0.5rem;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            border-radius: 5px;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .navbar-nav .nav-link:hover {
            color: #0062b4;
            background-color: rgba(161, 160, 252, 0.1);
        }

        .navbar-nav .nav-link.active {
            color: #0062b4 !important;
            font-weight: 700;
        }

        .btn-orange {
            background: #fd0000;
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            font-weight: 700;
            text-decoration: none;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .btn-orange:hover {
            background: #0062b4;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(118, 135, 250, 0.3);
            color: white;
        }

        .btn-outline-navy {
            background: transparent;
            color: var(--dark-navy);
            border: 2px solid var(--dark-navy);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .btn-outline-navy:hover {
            background: var(--dark-navy);
            color: white;
        }

        /* Hero Section - Moved content higher up */
        .hero-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 149, 0, 0.05));
            min-height: 90vh;
            display: flex;
            align-items: flex-start;
            position: relative;
            padding: 1rem 0 3rem; /* Reduced top padding */
            overflow: hidden;
        }

        /* Modern truck background pattern - Hidden on mobile */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: -8%;
            width: 60%;
            height: 100%;
            background-image: linear-gradient(rgb(112 190 255), #0d6efd);
            background-size: cover;
            background-position: center;
            z-index: 1;
            opacity: 0.8;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-tagline {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
            color: #0062b4;
        }

        .hero-subtitle {
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 500px;
            line-height: 1.6;
            color: #ffffff;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn-hero {
            padding: 1.2rem 2.5rem;
            font-size: 1rem;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-hero-primary {
            background: #0062b4;
            color: white;
        }

        .btn-hero-primary:hover {
            background: #0062b4;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(162, 149, 255, 0.4);
            color: white;
        }

        .btn-hero-secondary {
            background: transparent;
            color: var(--dark-navy);
            border: 2px solid var(--dark-navy);
        }

        .btn-hero-secondary:hover {
            background: var(--dark-navy);
            color: white;
        }

        /* Service Finder Widget - Positioned higher */
        .service-finder {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                border: 2px solid #0062b4;
            position: relative;
            max-width: 450px;
        }

        .finder-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.3;
        }

        .finder-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-control {
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #fafafa;
            font-weight: 500;
        }

        .form-control:focus {
            border-color: #0062b4;
            box-shadow: 0 0 0 3px rgba(97, 117, 245, 0.15);
            outline: none;
            background: white;
            transform: translateY(-1px);
        }

        .form-control:hover {
            border-color: #0062b4;
            background: white;
        }

        .country-selector {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .country-option {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            background: var(--light-gray);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .country-option:hover {
            border-color: #0062b4;
            background: rgba(124, 107, 232, 0.1);
            transform: translateY(-2px);
        }

        .country-option.active {
            border-color: #0062b4;
            background: rgba(145, 129, 253, 0.2);
            color: var(--text-dark);
        }

        .btn-find-service {
            background: #f90000;
            color: white;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .btn-find-service:hover {
            background: #0062b4;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(123, 117, 249, 0.3);
        }

        /* Hero Row Alignment - Updated for positioning */
        .hero-row {
            align-items: flex-start;
            padding-top: 1rem; /* Reduced from 2rem */
        }

        /* Stats Section with smaller cards for better mobile fit */
        .stats-section {
            background: var(--light-gray);
            padding: 3rem 0; /* Reduced padding */
            position: relative;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Reduced min width */
            gap: 1.5rem; /* Reduced gap */
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem 1rem; /* Reduced padding */
            border-radius: 15px;
            background: white;
            transition: all 0.3s ease;
            border: 1px solid rgb(0 98 180);
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-color: #70beff;
        }

        .stat-icon {
            font-size: 2.5rem; /* Reduced size */
            color: var(--primary-orange);
            margin-bottom: 0.8rem; /* Reduced margin */
            display: block;
        }

        .stat-number {
            font-size: 2.8rem; /* Reduced size */
            font-weight: 800;
            color: var(--text-dark);
            display: block;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 500;
            margin-top: 0.5rem;
            font-size: 0.9rem; /* Slightly smaller */
            line-height: 1.2;
        }

        /* Services Section with Orange Diagonal - Fixed text overlap */
        .services-section {
            padding: 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .services-header {
            background: rgb(112 190 255);;
            padding: 4rem 0 4rem; /* Increased bottom padding to prevent text overlap */
            position: relative;
            color: white;
            text-align: center;
        }

        /* Fixed: Reduced the height and adjusted positioning of the skewed element */
        .services-header::after {
            content: '';
            position: absolute;
            bottom: -30px; /* Reduced from -50px */
            left: 0;
            right: 0;
            height: 60px; /* Reduced from 100px */
            background: #4f96ff;
            transform: skewY(-1deg);
            transform-origin: bottom left;
        }

        .services-header h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .services-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            line-height: 1.6;
        }

        .services-content {
            padding: 5rem 0 4rem; /* Reduced top padding */
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 140, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
            transition: all 0.4s ease;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-color: var(--primary-orange);
        }

        .service-card-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: white;
            font-size: 3rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .service-link {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-link:hover {
            color: var(--text-dark);
            gap: 1rem;
        }

        /* Services List Styles - Responsive */
        .services-list {
            columns: 3;
            column-gap: 3rem;
            font-size: 1.1rem;
            padding-left: 1.5rem;
            list-style: disc;
        }
        
        .services-list li {
            margin-bottom: 0.5rem;
            break-inside: avoid; /* Prevents items from breaking across columns */
        }
        
        /* Responsive adjustments for services list */
        @media (max-width: 992px) {
            .services-list {
                columns: 2; /* 2 columns on medium screens */
                column-gap: 2rem;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .services-list {
                columns: 1; /* Single column on small screens */
                column-gap: 0;
                font-size: 0.95rem;
                padding-left: 1.2rem;
            }
            
            .services-list li {
                margin-bottom: 0.7rem; /* More space between items on mobile */
            }
            
            .services-content {
                padding: 3rem 0; /* Less padding on mobile */
            }
        }

        /* About Section with Orange Diagonal */
        .about-section {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about-header {
            background: rgb(112 190 255);
            padding: 2rem 0 4rem;
            position: relative;
            text-align: center;
            color: white;
        }

        .about-header::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: #4f96ff;
            transform: skewY(2deg);
            transform-origin: bottom right;
        }

        .about-tagline {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-title {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-content {
            padding: 6rem 0;
            background: white;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--light-gray);
            border-radius: 15px;
            transition: all 0.3s ease;
            border-left: 5px solid transparent;
        }

        .feature-item:hover {
            transform: translateX(10px);
            border-left-color: #0062b4;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0062b4, #80b1da);
            color: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .feature-content h4 {
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .feature-content p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .about-image {
            position: relative;
            text-align: center;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 3px solid #0062b4;
        }

        .about-image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--light-gray), #e2e8f0);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
            border: 3px dashed var(--primary-orange);
            position: relative;
            overflow: hidden;
        }

        .about-image-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* CTA Section - Bright */
.cta-section {
    background-image: linear-gradient(rgb(112 190 255), #0d6efd);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}



        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #ffffff;
        }

        .cta-description {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            color: #ffffff;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta {
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-cta-orange {
            background: #ffffff;
            color: rgb(105, 184, 255);
        }

        .btn-cta-orange:hover {
            background: #3486ff;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(98, 53, 247, 0.3);
            color: white;
        }

        .btn-cta-outline {
            background: transparent;
            color: var(--text-dark);
            border: 2px solid var(--text-dark);
        }

        .btn-cta-outline:hover {
            background: var(--text-dark);
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section ul li a:hover {
            color: var(--primary-orange);
            padding-left: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.2rem;
            }
            
            .services-header h2,
            .about-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .top-bar-left {
                gap: 1rem;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.4rem;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .about-image {
                order: 1;
            }
            
            .about-features {
                order: 2;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none; /* Hide top bar on mobile for cleaner look */
            }
            
            /* Hide hero background pattern on mobile */
            .hero-section::before {
                display: none;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .truck-logo {
                font-size: 1.2rem;
                padding: 0.3rem;
            }
            
            .hero-section {
                min-height: auto;
                padding: 2rem 0;
                background: white; /* Clean white background on mobile */
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .services-header h2,
            .about-title {
                font-size: 2rem;
            }
            
            .services-header p {
                font-size: 1.1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .hero-buttons,
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-row {
                flex-direction: column;
                gap: 2rem;
            }

            .hero-row .col-lg-6:first-child {
                order: 1;
            }

            .hero-row .col-lg-6:last-child {
                order: 2;
                background: rgb(112 190 255);
            }
            
            .service-finder {
                margin: 0 auto;
                max-width: 100%;
            }
            
            .country-selector {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .country-option {
                padding: 1rem;
            }
            
            /* Keep stats as 2x2 grid on mobile */
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .stat-item {
                padding: 1.2rem 0.8rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .stat-icon {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .feature-item {
                padding: 1rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-finder {
                padding: 1.5rem;
            }
            
            .finder-title {
                font-size: 1rem;
            }
            
            .form-control {
                padding: 0.8rem;
            }
            
            .btn-hero {
                padding: 1rem 2rem;
                font-size: 0.9rem;
            }
            
            .btn-cta {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 400px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .service-card-icon {
                width: 70px;
                height: 70px;
                font-size: 2.5rem;
            }
            
            .emergency-number {
                font-size: 1.1rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animations */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Icon styles */
        .icon-truck::before { content: "🚛"; }
        .icon-clock::before { content: "⏰"; }
        .icon-tools::before { content: "🛠️"; }
        .icon-star::before { content: "⭐"; }
        .icon-wrench::before { content: "🔧"; }
        .icon-trailer::before { content: "🚚"; }
        .icon-tire::before { content: "⚙️"; }
        .icon-tow::before { content: "🚛"; }
        .icon-snowflake::before { content: "❄️"; }
        .icon-clipboard::before { content: "📋"; }
        .icon-certificate::before { content: "🏆"; }
        .icon-bolt::before { content: "⚡"; }
        .icon-award::before { content: "🥇"; }
        .icon-facebook::before { content: "📘"; }
        .icon-twitter::before { content: "🐦"; }
        .icon-linkedin::before { content: "💼"; }
        .icon-instagram::before { content: "📷"; }

        /* Terms and Conditions Page Styles */
        .terms-content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #0062b4;
            margin-top: 2rem;
        }

        .terms-intro {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .terms-intro h3 {
            color: #0062b4;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .terms-intro .lead {
            font-size: 1.2rem;
            color: var(--text-dark);
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .terms-text {
            margin-bottom: 3rem;
        }

        .terms-text h4 {
            color: #0062b4;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 2rem 0 1rem 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .terms-text p {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .terms-text ul {
            margin: 1rem 0 1.5rem 0;
            padding-left: 2rem;
        }

        .terms-text ul li {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .terms-text a {
            color: #0062b4;
            text-decoration: none;
            font-weight: 600;
        }

        .terms-text a:hover {
            color: var(--primary-orange);
            text-decoration: underline;
        }

        .terms-contact {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border: 1px solid #0062b4;
        }

        .terms-contact h4 {
            color: #0062b4;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-details {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
            border-left: 4px solid var(--primary-orange);
        }

        .contact-details a {
            color: #0062b4;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-details a:hover {
            color: var(--primary-orange);
            text-decoration: underline;
        }

        .terms-footer {
            text-align: center;
            padding-top: 2rem;
            border-top: 2px solid #e2e8f0;
        }

        .terms-footer em {
            color: var(--text-light);
            font-size: 0.9rem;
            display: block;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 768px) {
            .terms-content {
                padding: 2rem 1.5rem;
                margin-top: 1rem;
            }

            .terms-intro h3 {
                font-size: 2rem;
            }

            .terms-intro .lead {
                font-size: 1.1rem;
            }

            .terms-text h4 {
                font-size: 1.2rem;
            }

            .terms-text p,
            .terms-text ul li {
                font-size: 0.95rem;
            }

            .terms-contact {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .terms-content {
                padding: 1.5rem 1rem;
            }

            .terms-intro h3 {
                font-size: 1.8rem;
            }

            .terms-text h4 {
                font-size: 1.1rem;
            }

            .terms-text ul {
                padding-left: 1.5rem;
            }

            .contact-details {
                padding: 1rem;
            }
        }



