
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        html {
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* Hero Section - Refined to match screenshot EXACTLY */
        .hero-section {
            background-color: #ffd200; 
            width: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .hero-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            align-items: flex-end; 
            padding-top: 20px;
            gap: 0;
        }

        .hero-left {
            flex: 1.2;
            position: relative;
            display: flex;
            justify-content: flex-start;
            min-height: auto;
            background: none;
            padding-right: 0;
        }

        .hero-person {
            max-width: 110%;
            height: auto;
            display: block;
            margin-left: -50px;
            z-index: 1;
        }

        .making-it-work {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 130px;
            z-index: 2;
        }

        .making-it-work img {
            width: 100%;
            height: auto;
        }

        .hero-right {
            flex: 1;
            padding: 80px 0 120px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .hero-content-wrapper {
            max-width: 480px;
        }

        .hero-pre-title {
            font-size: 22px;
            font-weight: 700;
            color: #002f5a;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .hero-title {
            font-size: 52px;
            color: #002f5a;
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .logo-icon {
            display: inline-flex;
            background-color: #000;
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            vertical-align: middle;
            margin-left: 2px;
            position: relative;
            top: -2px;
        }

        .hero-bullets {
            list-style: none;
            margin-bottom: 35px;
            padding-left: 0;
        }

        .hero-bullets li {
            font-size: 18px;
            color: #002f5a;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-weight: 600;
        }

        .hero-bullets li::before {
            content: "";
            width: 5px;
            height: 5px;
            background-color: #002f5a;
            border-radius: 50%;
            display: inline-block;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .apply-now-btn {
            background-color: #0b3d66; /* Exact dark navy from screenshot */
            color: white;
            border: none;
            padding: 16px 55px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 18px;
            cursor: pointer;
            margin-bottom: 15px;
            transition: all 0.3s;
        }

        .apply-now-btn:hover {
            background-color: #082d4d;
            transform: translateY(-2px);
        }

        .view-loans-link {
            font-size: 13px;
            color: #002f5a;
            margin-left: 10px;
        }

        .view-loans-link a {
            color: #002f5a;
            text-decoration: underline;
            font-weight: 700;
        }

        /* Trust Indicators Styles - Refined */
        .hero-trust-indicators {
            background-color: #f1f8fd; /* Very light blue/white */
            padding: 20px 0;
            border-top: 1px solid rgba(0,0,0,0.05);
            width: 100%;
        }

        .trust-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: #002f5a;
            font-weight: 600;
        }

        .trustpilot-stars-boxes {
            display: flex;
            gap: 2px;
        }

        .tp-box {
            background-color: #00b67a;
            color: white;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .trustpilot-logo {
            height: 22px;
            margin-right: 15px;
        }

        .google-stars {
            color: #ffb400;
            display: flex;
            gap: 4px;
            font-size: 16px;
        }

        .trust-item strong {
            color: #000;
            font-weight: 800;
        }

        .trustpilot-stars {
            height: 30px;
        }

        @media (max-width: 968px) {
            .hero-container {
                flex-direction: column-reverse;
                align-items: center;
                padding-top: 40px;
            }
            .hero-left {
                width: 100%;
                justify-content: center;
            }
            .hero-person {
                margin-left: 0;
                max-width: 100%;
            }
            .hero-right {
                padding: 40px 20px;
                align-items: center;
                text-align: center;
            }
            .hero-bullets {
                display: inline-block;
                text-align: left;
            }
            .hero-title {
                font-size: 38px;
            }
            .making-it-work {
                left: 20px;
                width: 100px;
            }
        }

        /* Quote Form Section */
        .quote-form-section {
            background-color: white;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding-left: 20px;
            padding-right: 20px;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .form-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: center;
            padding: 0 20px;
        }

        .form-container-with-image {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 450px 1fr; /* Fixed left, flexible right */
            gap: 40px;
            align-items: flex-start;
            padding: 0 20px;
        }

        .form-content-left {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-image-side {
            width: 100%;
        }

        .form-side-image {
            width: 100%;
            height: 550px;
            border-radius: 10px;
            object-fit: cover;
        }

        .form-text-side h3 {
            color: #f97316;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .form-text-side h2 {
            color: #1e3a8a;
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .form-text-side p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        .form-right-wrapper {
            width: 100%;
        }

        .form-left h3 {
            color: #f97316;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .form-left h2 {
            color: #1e3a8a;
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .form-left p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Quote Form */
        .quote-form {
            background-color: #f8f9fa;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .insurance-types {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .insurance-type {
            text-align: center;
            cursor: pointer;
            padding: 15px 10px;
            border-radius: 8px;
            transition: all 0.3s;
            background-color: white;
            border: 2px solid transparent;
        }

        .insurance-type:hover,
        .insurance-type.active {
            border-color: #f97316;
            background-color: #fff5f0;
        }

        .insurance-type i {
            font-size: 32px;
            color: #3b82f6;
            margin-bottom: 8px;
        }

        .insurance-type span {
            display: block;
            font-size: 12px;
            color: #333;
            font-weight: 600;
            text-transform: uppercase;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group input {
            padding: 14px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            background-color: white;
            transition: border-color 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #f97316;
        }

        .form-group input::placeholder {
            color: #999;
        }

        .form-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
        }

        .form-btn {
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .get-quote-btn {
            background-color: #f97316;
            color: white;
        }

        .get-quote-btn:hover {
            background-color: #ea580c;
        }

        .retrieve-btn {
            background-color: #f97316;
            color: white;
        }

        .retrieve-btn:hover {
            background-color: #ea580c;
        }

        .more-insurance-btn {
            background-color: transparent;
            color: #1e3a8a;
            border: 2px solid #e0e0e0;
        }

        .more-insurance-btn:hover {
            border-color: #1e3a8a;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero-left {
                min-height: 400px;
            }

            .hero-right,
            .quote-form-section {
                padding: 40px 30px;
            }

            .form-container {
                grid-template-columns: 1fr;
                padding: 0 30px;
            }

            .insurance-types {
                grid-template-columns: repeat(3, 1fr);
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-buttons {
                grid-template-columns: 1fr;
            }

            .form-container-with-image {
                grid-template-columns: 1fr;
                padding: 0 30px;
            }

            .hero-title {
                font-size: 36px;
            }

            .form-left h2 {
                font-size: 28px;
            }
        }

        /* About Section */
        .about-section {
            background-color: #f8f9fa;
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding-left: 20px;
            padding-right: 20px;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .about-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr)); /* Equal split */
            gap: 60px;
            align-items: center;
            padding: 0 20px;
        }

        .about-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-badge {
            color: #f97316;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            padding-left: 50px;
        }

        .about-badge::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background-color: #f97316;
        }

        .about-title {
            font-size: 42px;
            color: #1e3a8a;
            font-weight: 700;
            line-height: 1.3;
        }

        .about-description {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 10px;
        }

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

        .feature-item i {
            color: #3b82f6;
            font-size: 18px;
        }

        .feature-item span {
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }

        .ceo-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .ceo-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .ceo-details h4 {
            font-size: 16px;
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .ceo-details p {
            font-size: 13px;
            color: #666;
        }

        .about-right {
            position: relative;
        }

        .about-image-container {
            position: relative;
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .experience-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background-color: #f97316;
            color: white;
            padding: 25px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
        }

        .experience-number {
            font-size: 56px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
        }

        .experience-text {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Responsive for About Section */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-title {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 400px;
            }

            .experience-badge {
                top: 20px;
                right: 20px;
                padding: 20px 25px;
            }

            .experience-number {
                font-size: 48px;
            }
        }

        /* Insurance Types Section */
        .insurance-types-section {
            background: linear-gradient(135deg, #0c3c6e 0%, #1e5a8e 100%);
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-badge {
            color: #f97316;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding: 0 50px;
        }

        .section-badge::before,
        .section-badge::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background-color: #f97316;
        }

        .section-badge::before {
            left: 0;
        }

        .section-badge::after {
            right: 0;
        }

        .section-title {
            font-size: 42px;
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
        }

        .insurance-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .insurance-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .insurance-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .card-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .insurance-card:hover .card-image img {
            transform: scale(1.1);
        }

        .card-content {
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
        }

        .card-content h3 {
            font-size: 18px;
            color: #1e3a8a;
            font-weight: 700;
            margin: 0;
        }

        .card-arrow {
            width: 35px;
            height: 35px;
            background-color: #f97316;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .card-arrow:hover {
            background-color: #ea580c;
        }

        .card-arrow i {
            font-size: 14px;
        }

        .section-footer {
            text-align: center;
            margin-top: 30px;
        }

        .section-footer p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
        }

        .explore-link {
            color: #f97316;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .explore-link:hover {
            color: #ff8c42;
            text-decoration: underline;
        }

        /* Responsive for Insurance Types Section */
        @media (max-width: 1024px) {
            .insurance-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                font-size: 32px;
            }
        }

        @media (max-width: 640px) {
            .insurance-cards-grid {
                grid-template-columns: 1fr;
            }

            .section-badge {
                padding: 0 40px;
            }

            .section-badge::before,
            .section-badge::after {
                width: 30px;
            }
        }

        /* Benefits Section */
        .benefits-section {
            background-color: white;
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

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

        .benefits-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-badge-white {
            color: #f97316;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding: 0 50px;
        }

        .section-badge-white::before,
        .section-badge-white::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background-color: #f97316;
        }

        .section-badge-white::before {
            left: 0;
        }

        .section-badge-white::after {
            right: 0;
        }

        .benefits-title {
            font-size: 42px;
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .benefits-description {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        .benefits-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 15px 35px;
            background-color: transparent;
            border: none;
            color: #666;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .tab-btn.active {
            color: white;
            background-color: #f97316;
        }

        .tab-btn:hover {
            color: #f97316;
        }

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

        .benefits-left {
            padding-right: 20px;
        }

        .benefit-heading {
            font-size: 36px;
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .benefit-subheading {
            font-size: 18px;
            color: #666;
            font-style: italic;
            margin-bottom: 20px;
        }

        .benefit-text {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .benefit-contact {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-link {
            color: #1e3a8a;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            padding-bottom: 5px;
            border-bottom: 2px solid #1e3a8a;
            transition: color 0.3s, border-color 0.3s;
        }

        .contact-link:hover {
            color: #f97316;
            border-color: #f97316;
        }

        .benefits-right {
            position: relative;
        }

        .benefits-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: linear-gradient(135deg, #0c3c6e 0%, #1e5a8e 100%);
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

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

        .testimonials-header {
            margin-bottom: 50px;
        }

        .section-badge-orange {
            color: #f97316;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-left: 50px;
        }

        .section-badge-orange::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background-color: #f97316;
        }

        .testimonials-title {
            font-size: 42px;
            color: white;
            font-weight: 700;
            line-height: 1.3;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .quote-icon {
            font-size: 80px;
            color: #f97316;
            line-height: 1;
            opacity: 0.2;
            font-family: Georgia, serif;
            margin-bottom: 20px;
        }

        .testimonial-text {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f97316;
        }

        .author-info h4 {
            font-size: 16px;
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 13px;
            color: #666;
        }

        /* Responsive for Benefits and Testimonials */
        @media (max-width: 1024px) {
            .benefits-content {
                grid-template-columns: 1fr;
            }

            .benefits-image {
                height: 400px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .benefits-title,
            .testimonials-title {
                font-size: 32px;
            }

            .benefit-heading {
                font-size: 28px;
            }
        }

        /* Find Agent Section */
        .find-agent-section {
            background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .find-agent-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .agent-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .agent-content h2 {
            color: white;
            font-size: 32px;
            font-weight: 700;
            margin: 0;
        }

        .agent-contact {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .agent-contact i {
            color: #f97316;
            font-size: 24px;
        }

        .agent-info {
            text-align: right;
        }

        .agent-info p {
            color: white;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .agent-info h3 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin: 0;
        }

        /* Awards and Blogs Section */
        .awards-blogs-section {
            background-color: white;
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .awards-blogs-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .column-badge {
            color: #f97316;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-left: 50px;
        }

        .column-badge::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background-color: #f97316;
        }

        .column-title {
            font-size: 32px;
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .awards-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .award-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .award-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .award-icon {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .award-icon i {
            font-size: 32px;
            color: white;
        }

        .award-gold {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        }

        .award-blue {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        }

        .award-details h4 {
            font-size: 16px;
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .award-details p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .fraud-box {
            background-color: #f8f9fa;
            padding: 35px;
            border-radius: 10px;
        }

        .fraud-box h4 {
            font-size: 18px;
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .fraud-box p {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        /* Latest Blogs Section */
        .blogs-section {
            background-color: #f8f9fa;
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

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

        .blogs-header {
            margin-bottom: 20px;
        }

        .blogs-badge {
            color: #f97316;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-left: 50px;
        }

        .blogs-badge::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background-color: #f97316;
        }

        .blogs-title {
            font-size: 42px;
            color: #1e3a8a;
            font-weight: 700;
        }

        .blogs-disclaimer {
            margin-bottom: 50px;
        }

        .blogs-disclaimer p {
            color: #666;
            font-size: 15px;
        }

        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .blog-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            font-size: 13px;
            color: #999;
            margin-bottom: 10px;
        }

        .blog-title {
            font-size: 18px;
            color: #1e3a8a;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .blog-link {
            color: #f97316;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .blog-link:hover {
            gap: 12px;
        }

        /* Clients Section */
        .clients-section {
            background-color: white;
            padding: 30px 20px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .clients-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .clients-text {
            color: #999;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .find-agent-container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .agent-content {
                flex-direction: column;
            }

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

            .awards-blogs-container {
                grid-template-columns: 1fr;
            }

            .blogs-grid {
                grid-template-columns: 1fr;
            }

            .agent-content h2,
            .column-title,
            .blogs-title {
                font-size: 28px;
            }
        }
    

        /* About Us page */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Support Banner Section */
.support-banner {
    background: linear-gradient(135deg, #0c3c6e 0%, #1e5a8e 100%);
    padding: 100px 20px;
    margin-top: 0;
}

.support-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.support-icon {
    flex-shrink: 0;
}

.support-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

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

.support-content {
    color: white;
    max-width: 600px;
}

.support-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}

.support-subtitle {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

/* Company Advantage Section */
.company-advantage {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.advantage-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.advantage-title {
    font-size: 36px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 25px;
}

.advantage-description {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.advantage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.advantage-stat {
    padding: 20px;
    border-right: 2px solid #ddd;
}

.advantage-stat:last-child {
    border-right: none;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

.advantage-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.advantage-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: capitalize;
}

.advantage-btn.primary {
    background-color: #fbbf24;
    color: #1e3a8a;
    border: 2px solid #fbbf24;
}

.advantage-btn.primary:hover {
    background-color: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.advantage-btn.secondary {
    background-color: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.advantage-btn.secondary:hover {
    background-color: #1e3a8a;
    color: white;
    transform: translateY(-3px);
}

/* Real Stories Section */
.real-stories {
    background-color: white;
    padding: 100px 20px;
}

.stories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stories-title {
    font-size: 42px;
    color: #1e3a8a;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.stories-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(77, 208, 225, 0.9), rgba(38, 198, 218, 0.95));
    padding: 30px;
    color: white;
}

.story-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.story-subheading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.story-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
}

.story-info {
    padding: 25px;
}

.story-name {
    font-size: 18px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Who We Are Section */
.who-we-are {
    background: linear-gradient(135deg, #0c3c6e 0%, #1e5a8e 100%);
    padding: 80px 20px;
}

.who-container {
    max-width: 900px;
    margin: 0 auto;
}

.who-title {
    font-size: 36px;
    color: white;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.who-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.who-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.who-item:last-child {
    border-bottom: none;
}

.who-icon {
    width: 50px;
    height: 50px;
    background-color: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.who-icon i {
    font-size: 24px;
    color: #0c3c6e;
}

.who-text {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

/* Core Values New Section */
.core-values-new {
    background-color: white;
    padding: 100px 20px;
}

.values-new-container {
    max-width: 900px;
    margin: 0 auto;
}

.values-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.values-title-new {
    font-size: 42px;
    color: #1e3a8a;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item-new {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #4dd0e1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-item-new:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon-new i {
    font-size: 28px;
    color: white;
}

.value-content-new {
    flex: 1;
}

.value-heading {
    font-size: 22px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Help Section */
.help-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.help-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.help-title {
    font-size: 36px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 25px;
}

.help-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.help-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.help-link {
    color: #1e3a8a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s;
}

.help-link:hover {
    color: #4dd0e1;
}

/* Trust Section */
.trust-section {
    background-color: white;
    padding: 100px 20px;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-title {
    font-size: 42px;
    color: #1e3a8a;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.trust-badge-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.trust-reviews {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.review-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
    color: #fbbf24;
    font-size: 20px;
}

.review-stars.green {
    color: #10b981;
}

.review-count {
    font-size: 14px;
    color: #666;
}

.trust-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4dd0e1;
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-stars {
    color: #ffc107; /* Yellow stars (default) */
    font-size: 16px;
}

.testimonial-stars.green {
    color: #28a745; /* Green stars */
}

.testimonial-stars i {
    margin-right: 2px;
}

/* Community Impact Section */
.community-impact {
    background-color: #f5f5f5;
    padding: 100px 20px;
}

.impact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.impact-title {
    font-size: 42px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 25px;
}

.impact-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.impact-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.impact-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.impact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.impact-volunteer {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    padding: 80px 20px;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn.primary {
    background-color: white;
    color: #f97316;
}

.cta-btn.primary:hover {
    background-color: #1e3a8a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background-color: white;
    color: #f97316;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .trust-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .support-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .support-img {
        width: 280px;
        height: 280px;
    }

    .support-title {
        font-size: 26px;
    }

    .support-subtitle {
        font-size: 36px;
    }

    .advantage-title,
    .stories-title,
    .who-title,
    .values-title-new,
    .help-title,
    .trust-title,
    .impact-title {
        font-size: 32px;
    }

    .advantage-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-stat {
        border-right: none;
        border-bottom: 2px solid #ddd;
        padding-bottom: 20px;
    }

    .advantage-stat:last-child {
        border-bottom: none;
    }

    .trust-reviews {
        flex-direction: column;
        gap: 30px;
    }

    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .support-img {
        width: 220px;
        height: 220px;
    }

    .support-title {
        font-size: 22px;
    }

    .support-subtitle {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .advantage-title,
    .stories-title,
    .who-title,
    .values-title-new,
    .help-title,
    .trust-title,
    .impact-title,
    .cta-title {
        font-size: 28px;
    }

    .story-image {
        height: 250px;
    }

    .value-item-new {
        flex-direction: column;
        text-align: center;
    }

    .value-icon-new {
        margin: 0 auto;
    }

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

    .impact-image img {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .support-container {
        gap: 30px;
        padding: 20px;
    }

    .support-img {
        width: 180px;
        height: 180px;
    }

    .support-title {
        font-size: 20px;
    }

    .support-subtitle {
        font-size: 24px;
    }

    .advantage-buttons,
    .who-item {
        flex-direction: column;
    }

    .who-item {
        align-items: center;
        text-align: center;
    }
}

/* contact us */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Page Header Section */
.page-header {
    background: linear-gradient(135deg, rgba(12, 60, 110, 0.95) 0%, rgba(30, 90, 142, 0.95) 100%),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 60, 110, 0.9) 0%, rgba(30, 90, 142, 0.85) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #f97316;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

.page-title {
    font-size: 56px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Contact Info Cards Section */
.contact-info-section {
    background-color: white;
    padding: 80px 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s;
}

.info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-icon i {
    font-size: 32px;
    color: white;
}

.info-title {
    font-size: 20px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-detail {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-text {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 100px 20px;
}

.contact-form-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.section-badge {
    color: #f97316;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-left: 50px;
}

.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #f97316;
}

.form-title {
    font-size: 42px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.form-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.form-checkbox a {
    color: #f97316;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

/* Map Side */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.additional-info {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-heading {
    font-size: 22px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

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

.info-item i {
    color: #f97316;
    font-size: 18px;
}

.info-item span {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.social-connect h4 {
    font-size: 18px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.twitter {
    background-color: #1da1f2;
}

.social-link.linkedin {
    background-color: #0077b5;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube {
    background-color: #ff0000;
}

/* Branch Locations Section */
.branch-locations {
    background-color: white;
    padding: 100px 20px;
}

.branch-container {
    max-width: 1400px;
    margin: 0 auto;
}

.branch-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-white {
    color: #f97316;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 0 50px;
}

.section-badge-white::before,
.section-badge-white::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #f97316;
}

.section-badge-white::before {
    left: 0;
}

.section-badge-white::after {
    right: 0;
}

.branch-title {
    font-size: 42px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 20px;
}

.branch-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.branch-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.branch-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.branch-card:hover .branch-image img {
    transform: scale(1.1);
}

.branch-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f97316;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.branch-info {
    padding: 30px;
}

.branch-name {
    font-size: 22px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 20px;
}

.branch-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.branch-detail i {
    color: #f97316;
    font-size: 16px;
    margin-top: 2px;
}

.branch-detail p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.branch-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    color: #1e3a8a;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s;
}

.branch-direction-btn:hover {
    background-color: #f97316;
    color: white;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 100px 20px;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.faq-title {
    font-size: 42px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background-color: white;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #1e3a8a;
    font-weight: 600;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question.active {
    background-color: #f97316;
    color: white;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 30px 25px 30px;
    background-color: white;
}

.faq-answer p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* Emergency Support Section */
.emergency-support {
    background: linear-gradient(135deg, #0c3c6e 0%, #1e5a8e 100%);
    padding: 60px 20px;
}

.emergency-container {
    max-width: 1400px;
    margin: 0 auto;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 36px;
    color: #f97316;
}

.emergency-text h3 {
    font-size: 28px;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.emergency-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-phone,
.emergency-chat {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.emergency-phone {
    background-color: #f97316;
    color: white;
}

.emergency-phone:hover {
    background-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.emergency-chat {
    background-color: white;
    color: #1e3a8a;
}

.emergency-chat:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .branch-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 968px) {
    .page-title {
        font-size: 42px;
    }

    .form-title,
    .branch-title,
    .faq-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .emergency-contact {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .contact-info-container {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-title,
    .branch-title,
    .faq-title {
        font-size: 28px;
    }

    .additional-info {
        padding: 25px;
    }

    .emergency-text h3 {
        font-size: 24px;
    }

    .emergency-contact {
        width: 100%;
    }

    .emergency-phone,
    .emergency-chat {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 20px 60px;
    }

    .page-title {
        font-size: 28px;
    }

    .section-badge,
    .section-badge-white {
        padding-left: 40px;
        padding-right: 0;
    }

    .section-badge::before,
    .section-badge-white::before,
    .section-badge-white::after {
        width: 30px;
    }

    .info-icon {
        width: 65px;
        height: 65px;
    }

    .info-icon i {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* New Landing Page Sections */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.section-title { 
    font-size: 36px; 
    color: #002f5a; 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 20px; 
}
.section-subtitle { 
    font-size: 18px; 
    color: #002f5a; 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto 40px auto; 
    line-height: 1.5; 
}
.center-btn { 
    display: flex; 
    justify-content: center; 
    margin-top: 30px; 
}
.apply-now-yellow { 
    background-color: #ffd200; 
    color: #002f5a; 
    border: none; 
    padding: 15px 40px; 
    border-radius: 30px; 
    font-weight: 800; 
    font-size: 18px; 
    cursor: pointer; 
    transition: 0.3s; 
}
.apply-now-yellow:hover { 
    background-color: #e6bd00; 
}
.fast-easy-section { 
    padding: 80px 0; 
    background-color: #fff; 
}
.steps-grid { 
    display: flex; 
    justify-content: space-between; 
    gap: 30px; 
    margin-top: 50px; 
}
.step-item { 
    flex: 1; 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
}
.step-number { 
    background: #f0f0f0; 
    color: #002f5a; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    font-size: 20px; 
    flex-shrink: 0; 
}
.step-link { 
    color: #002f5a; 
    text-decoration: underline; 
    font-weight: 700; 
}
.disclaimer-text { 
    font-size: 12px; 
    color: #666; 
    text-align: center; 
    margin-top: 30px; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
}
.turning-someday-section { 
    padding: 80px 0; 
    background-color: #f1f8fd; 
}
.features-grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 40px; 
}
.feature-card-new { 
    text-align: center; 
    padding: 20px; 
}
.feature-icon-circle { 
    width: 80px; 
    height: 80px; 
    border: 2px solid #00a3e0; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 20px auto; 
    color: #00a3e0; 
    font-size: 30px; 
}
.feature-card-new h3 { 
    font-size: 22px; 
    color: #002f5a; 
    margin-bottom: 15px; 
    font-weight: 800; 
}
.explore-loans-btn { 
    background: none; 
    border: 2px solid #002f5a; 
    color: #002f5a; 
    padding: 12px 35px; 
    border-radius: 30px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.3s; 
}
.explore-loans-btn:hover { 
    background: #002f5a; 
    color: white; 
}
.trusted-millions-section { 
    padding: 80px 0; 
    text-align: center; 
}
.trust-badges { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 40px; 
    margin-bottom: 40px; 
}
.bbb-logo { 
    height: 60px; 
}
.state-licensed { 
    text-align: left; 
    color: #002f5a; 
    border-left: 2px solid #002f5a; 
    padding-left: 15px; 
}
.state-licensed span { 
    display: block; 
    font-size: 14px; 
    font-weight: 700; 
}
.state-licensed strong { 
    font-size: 20px; 
    font-weight: 800; 
}
.reviews-summary { 
    display: flex; 
    justify-content: center; 
    gap: 50px; 
    margin-bottom: 50px; 
}
.review-stat { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 5px; 
}
.stars-yellow { 
    color: #ffb400; 
    font-size: 18px; 
}
.tp-stars-inline { 
    color: #00b67a; 
    font-size: 18px; 
}
.tp-logo-small { 
    height: 20px; 
}
.testimonials-grid-new { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    text-align: left; 
}
.testimonial-new { 
    padding: 20px; 
    border-top: 1px solid #eee; 
}
.testimonial-new p { 
    font-size: 14px; 
    line-height: 1.6; 
    margin-bottom: 15px; 
}
.testimonial-new .author { 
    font-weight: 700; 
    font-size: 13px; 
    color: #666; 
}
.tp-rating { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-top: 10px; 
}
.tp-rating img { 
    height: 15px; 
}
.stars-green { 
    color: #00b67a; 
    font-size: 12px; 
}
.apply-loan-section { 
    padding: 80px 0; 
    background-color: #f1f8fd; 
}
.loan-promo-content { 
    display: flex; 
    align-items: center; 
    gap: 50px; 
    margin-top: 50px; 
}
.promo-phone-img { 
    max-width: 400px; 
    height: auto; 
}
.loan-products-grid { 
    flex: 1; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}
.loan-box { 
    background: white; 
    padding: 25px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}
.loan-box i { 
    font-size: 24px; 
    color: #002f5a; 
}
.loan-box h3 { 
    font-size: 18px; 
    color: #002f5a; 
    font-weight: 800; 
    text-decoration: underline; 
}
.loan-box p { 
    font-size: 14px; 
    color: #002f5a; 
    line-height: 1.4; 
}
.keep-in-touch-section { 
    padding: 100px 0; 
    text-align: center; 
}
.signup-form { 
    max-width: 500px; 
    margin: 40px auto 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    text-align: left; 
}
.form-group { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}
.form-group label { 
    font-weight: 700; 
    color: #002f5a; 
    font-size: 14px; 
}
.form-group input, .form-group select { 
    padding: 12px 20px; 
    border: 1px solid #ced4da; 
    border-radius: 10px; 
    background-color: #f8f9fa; 
    font-size: 16px; 
}
.signup-btn { 
    background-color: #002f5a; 
    color: white; 
    border: none; 
    padding: 15px; 
    border-radius: 10px; 
    font-weight: 800; 
    font-size: 18px; 
    cursor: pointer; 
    margin-top: 10px; 
}
@media (max-width: 968px) { 
    .steps-grid, .features-grid-3, .loan-products-grid, .testimonials-grid-new { 
        grid-template-columns: 1fr; 
    } 
    .loan-promo-content { 
        flex-direction: column; 
    } 
    .trust-badges, .reviews-summary { 
        flex-direction: column; 
        gap: 20px; 
    } 
}