   
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #343d5c;
            --secondary: #f48f27;
            --light: #f8f9fa;
            --dark: #212529;
            --white: #ffffff;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1rem;
            box-shadow: 0 4px 6px rgba(244, 143, 39, 0.2);
        }

        .btn:hover {
            background-color: #e07e1f;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(244, 143, 39, 0.3);
        }

        .btn-secondary {
            background-color: var(--primary);
            box-shadow: 0 4px 6px rgba(52, 61, 92, 0.2);
        }

        .btn-secondary:hover {
            background-color: #2a3350;
            box-shadow: 0 6px 12px rgba(52, 61, 92, 0.3);
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: var(--secondary);
        }

        .text-center {
            text-align: center;
        }

        /* Header Styles - IMPROVED RESPONSIVENESS */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            color: var(--secondary);
            font-size: 1.8rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--primary);
            white-space: nowrap;
        }

        .phone-link i {
            color: var(--secondary);
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
            background: none;
            border: none;
        }

        /* Hero Section - IMPROVED WITH BETTER BACKGROUND */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(rgba(52, 61, 92, 0.85), rgba(52, 61, 92, 0.9)), 
                        url('https://images.unsplash.com/photo-1601758003121-5ec042b15a5f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--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(52, 61, 92, 0.9) 0%, rgba(244, 143, 39, 0.2) 100%);
            z-index: 0;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            color: var(--white);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            background-color: var(--secondary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            border-top: 4px solid var(--secondary);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            background-color: var(--primary);
            color: var(--white);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        /* NEW: Premium Packing Section (Replaces Process Section) */
        .premium-packing {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .premium-packing:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=10');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        .packing-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .packing-text h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .packing-text h2 span {
            color: var(--secondary);
        }

        .packing-features {
            margin: 30px 0;
        }

        .packing-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .packing-feature i {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .packing-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .packing-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .packing-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }

        .packing-image:hover img {
            transform: scale(1.05);
        }

        .packing-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(52, 61, 92, 0.1), rgba(244, 143, 39, 0.05));
            z-index: 1;
        }

        /* Why Choose Us Section */
        .why-us {
            background-color: var(--light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-left-color: var(--secondary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            background-color: rgba(244, 143, 39, 0.1);
            color: var(--secondary);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }

        /* NEW: Safety Commitment Section (Replaces Testimonials) */
        .safety-commitment {
            background-color: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .safety-commitment:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1623298317882-8e6a7d21e8b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=10');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .safety-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .safety-content h2 {
            color: white;
            text-align: center;
            margin-bottom: 2rem;
        }

        .safety-content h2:after {
            background-color: var(--secondary);
        }

        .safety-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .safety-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .safety-stat {
            text-align: center;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

        .safety-stat .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

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

        /* Service Area Section */
        .service-area {
            background-color: var(--light);
        }

        .area-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .area-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .area-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background-color: white;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .area-item i {
            color: var(--secondary);
        }

        .area-map {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .map-placeholder {
            text-align: center;
            padding: 20px;
            color: var(--primary);
        }

        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        /* IMPROVED: CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #2a3350 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=20');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            color: var(--white);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }

        .cta-feature i {
            color: var(--secondary);
        }

        .cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 30px;
            color: var(--white);
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }

        .cta-phone i {
            color: var(--secondary);
            font-size: 1.8rem;
        }

        /* Footer */
        footer {
            background-color: #1a1f35;
            color: var(--white);
            padding: 70px 0 30px;
        }




        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            position: relative;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-col p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary);
            padding-left: 5px;
        }

        .contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-info i {
            color: var(--secondary);
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Responsive Styles - IMPROVED */
        @media (max-width: 1200px) {
            .packing-content {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content,
            .area-content,
            .packing-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-image {
                order: -1;
            }
            
            .packing-image {
                order: -1;
                transform: perspective(1000px) rotateY(0deg);
            }
            
            .safety-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                padding: 30px 0;
                box-shadow: var(--shadow);
                transition: var(--transition);
                z-index: 999;
                height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .nav-menu a {
                font-size: 1.2rem;
                padding: 10px 0;
                display: block;
            }
            
            .header-cta .btn {
                display: none;
            }
            
            .hero {
                padding: 140px 0 80px;
                background-attachment: scroll;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .hero-btns .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .area-list {
                grid-template-columns: 1fr;
            }
            
            .packing-text h2 {
                font-size: 1.8rem;
            }
            
            .safety-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-features {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-phone {
                font-size: 1.3rem;
                padding: 12px 25px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .header-container {
                padding: 12px 15px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .safety-stat .number {
                font-size: 2rem;
            }
        }

        @media (max-width: 400px) {
            .phone-link span {
                display: none;
            }
            
            .phone-link {
                font-size: 1.2rem;
            }
        }
		/* Updated Logo with Image */
		.logo-img {
			width: 145px;
            height: 50px;
			object-fit: contain;
		}

		.logo {
			display: flex;
			align-items: center;
			gap: 12px;
		}

		/* Dropdown Menu Styles */
		.dropdown {
			position: relative;
		}

		.dropdown .dropbtn {
			display: flex;
			align-items: center;
			gap: 5px;
		}

		.dropdown .dropbtn i {
			font-size: 0.8rem;
			transition: transform 0.3s ease;
		}

		.dropdown:hover .dropbtn i {
			transform: rotate(180deg);
		}

		.dropdown-content {
			display: none;
			position: absolute;
			background-color: var(--white);
			min-width: 220px;
			box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
			z-index: 1001;
			border-radius: 4px;
			overflow: hidden;
			top: 100%;
			left: 0;
			opacity: 0;
			transform: translateY(10px);
			transition: opacity 0.3s ease, transform 0.3s ease;
		}

		.dropdown:hover .dropdown-content {
			display: block;
			opacity: 1;
			transform: translateY(0);
		}

		.dropdown-content a {
			color: var(--primary);
			padding: 12px 20px;
			text-decoration: none;
			display: block;
			font-weight: 500;
			border-bottom: 1px solid rgba(0, 0, 0, 0.05);
			transition: all 0.2s ease;
		}

		.dropdown-content a:last-child {
			border-bottom: none;
		}

		.dropdown-content a:hover {
			background-color: rgba(244, 143, 39, 0.1);
			color: var(--secondary);
			padding-left: 25px;
		}
		
@media (max-width: 768px) {
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primary);
        width: 100%;
        text-align: left;
        padding: 0;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 18px 25px;
        display: block;
        color: white;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(244, 143, 39, 0.2);
        color: white;
        padding-left: 30px;
    }
    
    /* Mobile dropdown adjustments */
    .dropdown .dropbtn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 25px;
    }
    
    .dropdown .dropbtn i {
        display: inline-block;
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropbtn i {
        transform: rotate(180deg);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.15);
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 15px 25px;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(244, 143, 39, 0.15);
        color: white;
        padding-left: 30px;
    }
    
    /* Logo image mobile adjustment */
    .logo-img {
        width: 200px;
        height: 50px;
    }
	.nav-menu { 
	  gap: 0px;
	}
}
    
/* Page Header Section for Sub Pages */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(rgba(52, 61, 92, 0.9), rgba(52, 61, 92, 0.95)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 70px; /* Height of fixed header */
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), #ff9c45);
}

.page-header h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.page-header .breadcrumb {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 20px;
}

.page-header .breadcrumb a {
    color: var(--white);
    transition: var(--transition);
    opacity: 0.8;
}

.page-header .breadcrumb a:hover {
    color: var(--secondary);
    opacity: 1;
    text-decoration: underline;
}

.page-header .breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

/* Responsive Page Header */
@media (max-width: 992px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .breadcrumb {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 90px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header .breadcrumb {
        font-size: 0.9rem;
    }
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}