 <style>
        :root {
            --primary-color: #e31e24;
            --secondary-color: #b01519;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-weight: 400;
            background: #f8f9fa;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "aktiv-grotesk", sans-serif;
            font-weight: 800 !important;
            font-style: normal;
            text-transform: uppercase;
        }

        p {
            font-family: "aktiv-grotesk", sans-serif;
            font-weight: 400 !important;
        }

        .navbar {
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .phone-number {
            color: #006498;
            font-weight: 600;
            margin-right: 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .phone-number:hover {
            color: #e31e24;
        }


        .success-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 50px 40px;
            margin: 60px 0;
            text-align: center;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: #a2d033;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: scaleIn 0.5s ease-out;
        }

        .success-icon i {
            font-size: 50px;
            color: white;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-title {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 20px;
        }
        .success-title-small {
            font-size: 1.5rem;
            color: #1f2937;
            margin-bottom: 20px;
        }
        .success-message {
            font-size: 1.15rem;
            color: #6c757d;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .offer-badge {
            display: inline-block;
            background: linear-gradient(185deg, #005f92 0%, #002748 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-family: "aktiv-grotesk", sans-serif;
            text-shadow: 0 12px 7px rgba(0, 0, 0, 0.15);
        }

        .wayside-green {
            color: #a2d033;
        }

        .info-card-data {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-top: 40px;
            text-align: left;
        }
        
        .info-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .info-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            height: 100%;
            transform: translateY(30px);
        }

        .card-image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            object-fit: cover;
        }


        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #dee2e6;
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-label {
            font-weight: 600;
            color: #495057;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .info-value {
            color: #212529;
            font-weight: 500;
        }

        .btn-primary {
            background: #a2d033;
            border: none;
            padding: 15px 40px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
            text-transform: uppercase;
            font-family: "aktiv-grotesk", sans-serif;
            font-weight: 800 !important;
        }

        .btn-primary:hover {
            background: #8fb82a;
            transform: translateY(-2px);
            color: white;
        }

 .btn{
           font-family: "aktiv-grotesk", sans-serif;
            font-weight: 800 !important;
            font-style: normal;
            text-transform: uppercase;
        }

        .btn-outline-primary-new {
            color: #006498;
            border-color: #006498;
        }

        .btn-outline-primary-new:hover {
            background: #006498;
            border-color: #006498;
            color: white;
        }

        .btn-outline-primary-new:hover {
            background: #006498;
            border-color: #006498;
            color: white;
        }

        .next-steps {
            margin-top: 50px;
            padding-top: 40px;
            border-top: 2px solid #dee2e6;
        }

        .step-item {
            display: flex;
            align-items: start;
            gap: 20px;
            margin-bottom: 25px;
            text-align: left;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #006498 0%, #004670 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            flex-shrink: 0;
        }

        .step-content h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #212529;
        }

        .step-content p {
            color: #6c757d;
            margin: 0;
        }
        
        .info-section {
            padding: 80px 0 40px 0;
            background: #f8f9fa;
        }

        footer {
            background: #006498;
            color: white;
            padding: 40px 0 30px 0;
            border-bottom: 25px solid #00466a;
        }

        footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #a2d033;
        }

        .footer-address i {
            color: #a2d033;
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .success-container {
                padding: 30px 20px;
            }

            .success-title {
                font-size: 1.8rem;
            }

            .offer-badge {
                font-size: 1.2rem;
                padding: 12px 20px;
            }
        }

        .info-section-new {
            padding: 80px 0 80px 0 !important;
            background: #f8f9fa !important;
        }
    </style>