        :root {
            --primary-color: #e31e24;
            --secondary-color: #b01519;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-weight: 400;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .display-1,
        .display-2,
        .display-3,
        .display-4,
        .display-5,
        .display-6 {
            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;
        }
        .custom-header{
            font-size: 4.5rem;
            line-height: 4.25rem;
        }

        .special-offer{
           font-family: "aktiv-grotesk", sans-serif;
            font-weight: 800 !important;
            font-style: normal;
            text-transform: uppercase;
        }

        .gradient-bg {
            background-color: #00689c;
            color: white;
            padding: 40px 0;
            margin-top: 76px;
        }
         .mainLandingAdjust{
          margin-top:-20px;
         }
        
        .blue-gradient{
            background: linear-gradient(185deg,#005f92 0%,#002748 100%)!important;
        }

        .navbar {
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: white;
            transition: transform 0.3s ease;
        }

        .navbar.hidden {
            transform: translateY(-100%);
        }

        .navbar-spacer {
            height: 0;
        }

        .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;
        }

        .logo-placeholder {
            width: 120px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            border-radius: 8px;
        }

        .hero-section {
            padding: 60px 0;
        }

        .header-info-container{
            padding-right:20px;
        }

        .header-divider {
            position: relative;
            height: 20px;
        }

        .header-divider::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            border-top: 4px solid #a2d033;
            height: 20px;
            width: 300px
        }

        .hero-text h1,
        .hero-text p {
            text-shadow: 0 22px 14px rgba(0, 0, 0, 0.15);
        }

        .form-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }

        .form-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .form-header h3 {
            font-size: 2rem;
        }

        .special-offer {
            background: #006498;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 20px;
            text-align: center;
             text-shadow: 0 12px 7px 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%;
            opacity: 0;
            transform: translateY(30px);
        }

        .info-card.fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .info-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .info-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .info-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .info-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .card-image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            object-fit: cover;
        }

        .info-section {
            padding: 80px 0 40px 0;
            background: #f8f9fa;
        }

        .clients-section {
            padding: 60px 0;
            background: white;
        }

        .client-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }

        .client-logo {
            height: 80px;
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }

        .client-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .btn-primary {
            background: #a2d033;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
        }

        .btn-primary:hover {
            background: #8fb82a;
            transform: translateY(-2px);
            color: white;
        }

        .btn-primary:disabled {
            background: #c8e89c;
            cursor: not-allowed;
            transform: none;
        }

        .spinner-border-sm {
            width: 1rem;
            height: 1rem;
            border-width: 0.15em;
        }

        .btn{
           font-family: "aktiv-grotesk", sans-serif;
            font-weight: 800 !important;
            font-style: normal;
            text-transform: uppercase;
        }

        .btn-outline-primary {
            color: #006498;
            border-color: #006498;
        }

        .btn-outline-primary:hover {
            background: #006498;
            border-color: #006498;
            color: white;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(227, 30, 36, 0.25);
        }

        .form-group {
            position: relative;
            margin-bottom: 25px;
        }

        .form-group input {
            width: 100%;
            padding: 16px 12px 8px 12px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group label {
            position: absolute;
            left: 12px;
            top: 12px;
            color: #6c757d;
            font-size: 16px;
            pointer-events: none;
            transition: all 0.3s ease;
            background: white;
            padding: 0 4px;
        }

        .form-group input:focus+label,
        .form-group input:not(:placeholder-shown)+label {
            top: -8px;
            font-size: 12px;
            color: #006498;
            font-weight: 500;
        }

        .form-group input:focus {
            outline: none;
            border-color: #006498;
            box-shadow: 0 0 0 0.2rem rgba(0, 100, 152, 0.25);
        }

        .form-group input.is-invalid {
            border-color: #dc3545;
        }

        .form-group input.is-invalid+label {
            color: #dc3545;
        }

        .form-group input.is-valid {
            border-color: #28a745;
        }

        .form-check-label{
            font-size:0.8rem;
        }

        .lead{
            font-size:1.15rem;
        }

        .invalid-feedback {
            display: none;
            font-size: 0.875rem;
            color: #dc3545;
            margin-top: 4px;
        }

        .invalid-feedback.show {
            display: block;
        }

        .privacy-note {
            font-size: 0.75rem;
            color: #6c757d;
            margin-top: 4px;
            font-style: italic;
        }

        .form-check-label {
            color: #1f2937;
        }

        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;
        }

        .footer-logo {
            text-align: center;
            margin-bottom: 25px;
        }

        .footer-logo img {
            height: 50px;
            filter: brightness(0) invert(1);
        }

        .footer-content {
            overflow: auto;
        }

        .wayside-green{
            color: #a2d033;
        }

.card-body{
text-align:center;
font-size:14px;
}