        /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-red: #C41E3A;
            --charcoal: #2C3E50;
            --warm-orange: #FF6B35;
            --off-white: #FAFAFA;
            --text-dark: #333333;
            --success-green: #27AE60;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --border-gray: #e9ecef;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--off-white);
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
        }
        
        h3 {
            font-size: clamp(1.5rem, 3vw, 1.8rem);
        }
        
        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--success-green);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #229954;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-red);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-red);
            color: var(--white);
        }
        
        /* Container and Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .section {
            padding: 4rem 0;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-red);
            text-decoration: none;
        }
        
        .nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .nav a:hover {
            color: var(--primary-red);
        }
        
        .header-phone {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-red);
            text-decoration: none;
        }
        
        .header-phone:hover {
            color: var(--charcoal);
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-red);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background:
                linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%),
                url('../images/Herophoto_firehouse_transfers.png') center right/cover no-repeat;
            color: var(--white);
            position: relative;
            overflow: hidden;
            padding-left: 2rem;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            z-index: 1;
        }
        
        .hero .container {
            margin: 0;
            margin-left: 2rem;
            max-width: 600px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
        }
        
        .hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        /* Trust Badges Section */
        .trust-badges-section {
            background-color: var(--off-white);
            padding: 1.5rem 0;
            border-top: 1px solid #ccc;
        }

        .trust-badges-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background-color: transparent;
            padding: 0;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .trust-badge-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Urgency Banner */
        .urgency-banner {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 1rem 0;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .urgency-banner .warning-icon {
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }
        
        /* Why Choose Us Section */
        .why-choose-us {
            background-color: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-red);
        }
        
        /* Pricing Section */
        .pricing-section {
            background-color: var(--light-gray);
            padding: 4rem 0;
        }

        .pricing-container {
            max-width: 1050px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-size: 1.05rem;
            color: #666;
            line-height: 1.7;
        }

        /* Trust Callout */
        .trust-callout {
            background-color: #e8f5e9;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .trust-callout-icon {
            width: 40px;
            height: 40px;
            background-color: var(--success-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .trust-callout-content h3 {
            color: #1b5e20;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .trust-callout-content p {
            color: #2e7d32;
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        .trust-callout-content .subtext {
            font-size: 0.9rem;
            color: #558b2f;
            margin-bottom: 0;
        }

        /* Pricing Cards */
        .pricing-card {
            background-color: var(--white);
            border-radius: 18px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .pricing-card-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .pricing-card-icon {
            width: 48px;
            height: 48px;
            background-color: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .pricing-card-title h3 {
            font-size: 1.4rem;
            color: var(--charcoal);
            margin-bottom: 0.25rem;
        }

        .pricing-card-title .subtitle {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 0;
        }

        /* Pricing Tiers Box */
        .pricing-tiers {
            background-color: var(--light-gray);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .pricing-tier {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-gray);
        }

        .pricing-tier:last-child {
            border-bottom: none;
        }

        .pricing-tier .tier-label {
            font-size: 1rem;
            color: var(--text-dark);
        }

        .pricing-tier .tier-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-red);
        }

        .pricing-tier.contact-tier .tier-price {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-red);
        }

        /* Includes List */
        .includes-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .includes-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            font-size: 1rem;
            color: var(--text-dark);
        }

        .includes-list li .check-icon {
            color: var(--success-green);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Archive Upgrade Callout */
        .archive-highlight {
            background-color: #fff8e1;
            border: 2px solid #ffcc02;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .archive-highlight-icon {
            font-size: 1.3rem;
        }

        .archive-highlight-text {
            font-size: 1.05rem;
            font-weight: 600;
            color: #5d4037;
            margin: 0;
        }

        .pricing-card-footnote {
            font-size: 0.9rem;
            color: #666;
            margin-top: 1rem;
            font-style: italic;
        }

        /* Two Column Row */
        .pricing-two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .pricing-small-card {
            background-color: var(--white);
            border-radius: 18px;
            padding: 1.75rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .pricing-small-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .pricing-small-card-icon {
            width: 40px;
            height: 40px;
            background-color: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .pricing-small-card h4 {
            font-size: 1.2rem;
            color: var(--charcoal);
            margin: 0;
        }

        .pricing-small-card p {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 1rem;
        }

        .pricing-small-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .pricing-small-card ul li {
            padding: 0.4rem 0;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .pricing-small-card ul li::before {
            content: '•';
            color: var(--primary-red);
            font-weight: bold;
            margin-right: 0.6rem;
        }

        .pricing-small-card .note {
            font-size: 0.85rem;
            color: #888;
            margin-top: 1rem;
            margin-bottom: 0;
        }

        .pricing-small-card .trust-line {
            font-weight: 600;
            color: var(--text-dark);
            margin-top: 1rem;
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        /* Footer CTA */
        .pricing-cta {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
        }

        .pricing-cta h3 {
            font-size: 1.6rem;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
        }

        .pricing-cta p {
            font-size: 1.05rem;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .pricing-cta .btn-cta {
            display: inline-block;
            background-color: var(--success-green);
            color: var(--white);
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .pricing-cta .btn-cta:hover {
            background-color: #229954;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }

        .pricing-cta .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .pricing-cta .cta-divider {
            color: #999;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .pricing-cta .btn-cta-secondary {
            background-color: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }

        .pricing-cta .btn-cta-secondary:hover {
            background-color: var(--primary-red);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
        }

        @media (max-width: 768px) {
            .pricing-two-col {
                grid-template-columns: 1fr;
            }

            .trust-callout {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .pricing-card-header {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .pricing-small-card-header {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Services Section */
        .services {
            background-color: var(--light-gray);
        }
        
        .services-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }
        
        .formats-list {
            list-style: none;
        }
        
        .formats-list li {
            display: flex;
            align-items: center;
            padding: 0.8rem 0;
            font-size: 1.1rem;
        }
        
        .formats-list li::before {
            content: '✓';
            color: var(--success-green);
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .pricing-box {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 5px solid var(--primary-red);
        }
        
        .pricing-box h3 {
            color: var(--primary-red);
            margin-bottom: 1.5rem;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-gray);
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .price {
            font-weight: bold;
            color: var(--success-green);
            font-size: 1.2rem;
        }
        
        /* Process Timeline */
        .process {
            background-color: var(--white);
        }
        
        .timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .timeline-item {
            text-align: center;
            position: relative;
        }
        
        .timeline-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-red);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 2;
        }
        
        .timeline-item h4 {
            color: var(--primary-red);
            margin-bottom: 0.5rem;
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light-gray);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }
        
        .faq-item {
            background-color: var(--white);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: var(--light-gray);
        }
        
        .faq-toggle {
            font-size: 1.5rem;
            color: var(--primary-red);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 1.5rem 1.5rem;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--white);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }
        
        .contact-form {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-gray);
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-red);
        }
        
        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .form-note {
            font-size: 0.9rem;
            color: #666;
            margin-top: 1rem;
            text-align: center;
        }
        
        .contact-info h3 {
            color: var(--primary-red);
            margin-bottom: 2rem;
        }
        
        .contact-item {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background-color: var(--light-gray);
            border-radius: 10px;
        }
        
        .contact-item h4 {
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        
        .contact-item a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-item a:hover {
            text-decoration: underline;
        }
        
        .service-areas {
            margin-top: 2rem;
        }
        
        .areas-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .area-tag {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        /* Footer */
        .footer {
            background-color: var(--charcoal);
            color: var(--white);
            padding: 3rem 0 2rem;
            text-align: center;
        }
        
        .footer h3 {
            color: var(--warm-orange);
            margin-bottom: 1rem;
        }
        
        .footer-tagline {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .footer-areas {
            margin: 2rem 0;
            font-size: 0.9rem;
        }
        
        .footer-copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            
            .nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
            }
            
            .nav.active {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .services-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .timeline {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .trust-badges-container {
                flex-direction: column;
                gap: 1rem;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Utility Classes */
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .text-large { font-size: 1.2rem; }
        .text-bold { font-weight: 600; }
        .text-red { color: var(--primary-red); }
        .text-green { color: var(--success-green); }
