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

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9fafb;
        }

        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
        @media (max-width: 768px) {
        .container {
            padding: 0 12px;
        }
		}

        html {
            scroll-behavior: smooth;
        }

        /* Header Styles */
        header {
            background: #fff;
            border-bottom: 3px solid #f59e0b;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .header-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .header-nav a:hover {
            color: #1e40af;
        }

        .header-phone {
            background: #f59e0b;
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: background 0.3s ease;
            white-space: nowrap;
        }

        .header-phone:hover {
            background: #153e75;
            color: #fff !important;
        }

        .header-phone i {
            margin-right: 8px;
        }

        .mobile-menu-toggle {
            display: none;
            background: #1e40af;
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 20px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
		
            header {
            position: unset;
        }

            .header-container {
                padding: 10px 20px;
            }

            .logo {
                height: 50px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .header-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 15px;
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid #e5e7eb;
            }

            .header-nav.active {
                display: flex;
            }

            .header-phone {
                width: 100%;
                text-align: center;
                font-size: 16px;
                padding: 12px 20px;
            }

            .header-nav a {
                width: 100%;
                text-align: center;
                padding: 10px;
                background: #f9fafb;
                border-radius: 5px;
            }
        }

        /* Footer Styles */
        footer {
            background: #1e40af;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .footer-logo {
            width: 250px;
            height: auto;
            margin: 0 auto 20px;
            display: block;
            background: #fff;
            padding: 10px;
            border-radius: 8px;
        }

        .footer-disclaimer {
            font-size: 11px;
            line-height: 1.5;
            margin-bottom: 20px;
            color: #e5e7eb;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 20px 0;
            padding: 15px 0;
            border-top: 1px solid rgba(255,255,255,0.2);
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #f59e0b;
        }

        .footer-copyright {
            font-size: 14px;
            margin-top: 20px;
            color: #e5e7eb;
        }

        @media (max-width: 768px) {
            footer {
                padding: 30px 0 15px;
            }

            .footer-logo {
                width: 200px;
            }

            .footer-disclaimer {
                font-size: 10px;
                line-height: 1.1;
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .footer-links a {
                display: block;
                padding: 8px;
            }
        }

        .title-heading {
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800 !important;
            margin: 0 0 12px;
            text-align: center;
        }

        .wra-text {
            background: #1e40af;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .alignleft {
            border-radius: 10px;
            float: left;
            margin-right: 20px;
            margin-bottom: 15px;
        }

        @media (max-width:720px) {
            .alignleft {
                margin-bottom: 15px;
                float: none;
                display: block;
                margin: 0 auto 15px;
                width: 100%;
                height: auto;
    }
            }
        }

        hr {
            border: none;
            border-top: 1px solid #e5e7eb;
            margin: 40px 0;
        }

        /* Service Location Intro Section */
        .service-location-intro {
            text-align: center;
            border-radius: 16px;
            padding: 40px 20px 0 20px;
        }

        .service-location-intro .btn-outline {
            margin-top: 20px;
        }

        .service-location-intro h1 {
            font-size: clamp(22px,3vw,30px);
            font-weight: 800;
            margin: 0 0 12px;
        }

        .service-location-intro p {
            max-width: 700px;
            margin: 0 auto 0;
            font-size: 16px;
            line-height: 1.6;
        }

        @media screen and (max-width: 720px) {
            .service-location-intro {
                padding: 40px 0 0 0;
            }
            .service-location-intro br {
                display: none;
            }			
            .service-location-intro p {
                font-size: 16px;
                line-height: 1.4;
            }
			.service-location-intro h1 {
				line-height: 1.2em;
				padding-bottom: 10px;
			}			
        }

        .service-location-icons {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
            gap: 16px;
            max-width: 835px;
            margin: 0 auto;
            padding-top: 20px;
            padding-bottom: 5px;
        }

        .service-location-icons p {
            margin-bottom: 0;
        }

        .service-location-icon-box {
            background: #f9fafb;
            border: 1px solid rgb(30 64 175);
            padding: 16px 16px 0 16px;
            border-radius: 12px;
            font-size: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-location-icon-box img {
            width: 36px;
        }

        .service-location-icon-box i {
            font-size: 32px;
            color: transparent;
            background: #1e40af;
            -webkit-background-clip: text;
            background-clip: text;
        }

        .service-location-label {
            font-weight: 600;
            padding: 10px 0 20px 0;
        }

        .tarifecta {
            font-style: italic;
            color: #c41310;
        }

        /* Service Location Button */
        .btn-outline {
            font-size: 20px;
            text-decoration: none;
            color: #ffffff;
            display: inline-block;
            border: 1px solid #153e75;
            border-radius: 10px;
            padding: 15px;
            background: #153e75;
        }

        .btn-outline:hover {
            background: #1e40af;
            color: #ffffff;
        }

        .btn-outline .fa-solid {
            color: #f59e0b;
        }

        @media (max-width: 720px) {
            .btn-outline {
                font-size: 18px;
                font-weight: 600;
                padding: 15px 10px;
            }
        }

        /* Service Type Section */
        .service-type-section {
            padding: 20px 0;
        }

        .service-type-title {
            text-align: center;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            margin: 0 0 12px;
            padding-top: 20px;
        }

        .service-type-description {
            text-align: center;
            font-size: 16px;
            line-height: 1.6;
            max-width: 680px;
            margin: 0 auto 20px;
        }

        .service-type-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            justify-items: stretch;
            align-items: stretch;
            margin-top: 40px;
            margin-bottom: 0;
            margin-left: auto;
            margin-right: auto;
        }

        .service-type-grid p {
            margin-bottom: 0;
        }

        .service-type-item {
            display: flex;
            align-items: flex-start;
            background: #f9fafb;
            border-radius: 12px;
            padding: 18px 22px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.04);
            border: 1px solid #1e40af;
            height: 100%;
        }

        .service-type-item i {
            font-size: 30px;
            color: #184fa7;
            margin-right: 16px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .service-type-item h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #18323a;
            margin-bottom: 6px;
            font-size: 20px;
			line-height: 1.1;
        }

        .service-type-item p {
            font-size: 1.1rem;
            color: #555;
            margin: 0;
            line-height: 1.3;
        }

        .service-type-item:hover {
            background-color: #ebf7ff;
            color: #fff;
        }

        .service-type-item:hover i {
            color: #f59e0b;
        }

        @media (max-width: 720px) {
            .service-type-description {
                font-size: 16px;
                line-height: 1.4;
            }
            .service-type-title {
                padding-top: 0;
            }
            .service-type-grid {
                grid-template-columns: 1fr;
            }
            .service-type-item i {
                font-size: 26px;
            }
        }

        /* Why Us */
        .why-us {
            padding: 5px 20px 40px 20px;
        }

        .why-us h2 {
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            line-height: 1.2em;
            text-align: center;
            margin-bottom: 20px;
        }

        @media (max-width: 720px) {
			.why-us {
				padding: 25px 0 40px 0;
			}		
            .why-us p {
                font-size: 16px;
                line-height: 1.4;
            }
        }

        /* Local Services */
        .service-cards {
            padding: 0 20px 20px 20px;
        }

        .service-cards h2 {
            text-align: center;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            margin: 0 0 12px;
			line-height: 1.1;
        }

        @media (max-width: 720px) {
            .service-cards {
                padding: 30px 0 20px 0;
            }
            .service-cards h2 {
                font-size: 1.4rem;
            }
        }

        .service-cards p {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 20px;
            font-size: 16px;
            line-height: 1.6;
        }

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

        .service-box {
            background: #ffffff;
            border-radius: 16px;
            padding: 0 0 15px 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #eee;
            text-align: center;
        }

        .service-box img {
            border-radius: 10px 10px 0 0;
            width: 100%;
            height: auto;
        }

        .service-box:hover {
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }

        .service-box h3 {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            color: #1e40af;
            margin-top: 15px;
            margin-bottom: 10px;
            padding: 0 10px 0 10px;
        }

        .service-box p {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
            margin-bottom: 0;
            font-family: 'Roboto Condensed', sans-serif;
            padding: 0 10px 0 10px;
        }

        @media (max-width: 720px) {
            .service-box p {
                font-size: 1rem;
                line-height: 1.4;
                margin-bottom: 0px;
            }
            .btn-quote {
                margin-top: 10px !important;
                width: 100%;
            }
        }

        .btn-quote {
            display: inline-block;
            background-color: #fff;
            color: #1e40af;
            font-weight: 600;
            padding: 10px 24px;
            border: 2px solid #1e40af;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .btn-quote .fa-solid {
            color: #f59e0b;
        }

        .btn-quote:hover {
            background-color: #ebf7ff;
            color: #000000;
            border: 2px solid #D5E9F6;
        }

        @media (max-width: 720px) {
            .service-cards h2 br {
                display: none;
            }
            .service-cards p {
                font-size: 16px;
                line-height: 1.4;
            }
        }

        @media (max-width: 992px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        /* How It Works */
        .how-it-works {
            padding: 0 20px 10px 20px;
            text-align: center;
        }

        .how-it-works h2 {
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            margin: 0 0 12px;
        }

        .works-steps {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: auto;
        }

        .step-box {
            background: #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            border-radius: 2px;
            flex: 1;
            min-width: 300px;
            max-width: 340px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding-bottom: 25px;
            transition: transform 0.3s;
            margin: 10px;
        }

        .step-box p {
            margin-bottom: 0;
        }

        .step-box:hover {
            transform: translateY(-5px);
        }

        .step-header {
            background: #1e40af;
            color: #fff;
            width: 100%;
            padding: 12px 0;
            font-weight: 700;
            font-size: 28px;
        }

        .step-box h3 {
            color: #184fa7;
            font-size: 1rem;
            font-weight: 700;
            margin-top: 15px;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .step-box i {
            font-size: 40px;
            color: #f59e0b;
            margin: 10px 0 15px;
        }

        .step-box p {
            color: #333;
            font-size: 0.95rem;
            line-height: 1.5;
            padding: 0 15px;
        }

        @media (max-width: 720px) {
			.step-box {
				margin: 10px 0 10px 0;
			}		
            .how-it-works {
                padding: 25px 0 0 0;
            }
            .works-steps {
                justify-content: center;
            }
            .how-it-works h2 {
                line-height: 1.2em;;
            }			
            .how-it-works h2 br {
                display: none;
            }
        }

        /* Best For */
        .best-for {
            padding: 0 20px;
        }

        .best-for h2 {
            text-align: center;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            margin: 0 0 12px;
        }

        @media (max-width: 720px) {
			.best-for {
				padding: 20px 0 0 0;
			}		
            .best-for h2 {
                font-size: 1.4rem;
				line-height: 1.2em;
            }
        }

        .best-for p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 20px;
            font-size: 16px;
            line-height: 1.6;
        }

        /* TYPES */
        .generic-type-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .generic-type-card {
            width: 32%;
            background: #fff;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-sizing: border-box;
            margin-bottom: 3%;
        }

        .generic-type-card p {
            margin-bottom: 0;
        }

        .generic-type-card:hover {
            transform: translateY(-1%);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
        }

        .generic-type-header {
            background-color: #1e3a8a;
            color: #fff;
            padding: 10px 10px 1px 10px;
            text-align: center;
            font-weight: 600;
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
        }

        .generic-type-header h3 {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 0 10px 10px 10px;
        }

        .generic-type-image {
            width: 100%;
            height: auto;
            display: block;
            border-bottom: 1px solid #d1d5db;
        }

        .generic-type-body {
            padding: 5%;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #374151;
        }

        .generic-type-body strong {
            color: #111827;
        }

        @media (max-width: 900px) {
            .generic-type-card {
                width: 48%;
            }
        }

        @media (max-width: 600px) {
            .generic-type-card {
                width: 100%;
            }
        .generic-type-cards {
            padding: 0 0 20px 0;
        }
        }

        /* Glass Type Cards */
        .glass-type-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
            margin: 0 auto;
            padding: 10px 20px;
            box-sizing: border-box;
        }

        .glass-card {
            display: flex;
            align-items: center;
            width: 48%;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.25s ease;
        }

        .glass-type-content {
            margin: 0 auto;
            padding: 0 20px;
        }

        .glass-type-content h2 {
            text-align: center;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            margin: 0 0 12px;
        }

        .glass-type-content p {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 20px;
            font-size: 16px;
            line-height: 1.6;
        }

        @media (max-width: 720px) {
			.glass-type-content {
				padding: 0 0;
			}		
            .glass-type-content h2 {
                font-size: 1.4rem;
				line-height: 1.2em;
            }
            .glass-type-content p {
                margin-bottom: 20px !important;
                line-height: 1.4;
            }
        }

        .glass-card:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .glass-card-image {
            width: 40%;
            height: 180px;
            object-fit: cover;
            flex-shrink: 0;
            border-top-left-radius: 12px;
            border-bottom-left-radius: 12px;
        }

        .glass-card-content {
            padding: 20px 24px;
        }

        .glass-card-content h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 1.2rem;
            color: #111827;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .glass-card-content p {
            font-size: 0.94rem;
            color: #4b5563;
            line-height: 1.5;
            margin: 0;
        }

        .glass-card-content strong {
            color: #1f2937;
        }

        @media (max-width: 900px) {
            .glass-card {
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            .glass-card {
                flex-direction: column;
            }
            .glass-card-image {
                width: 73%;
                height: 200px;
                border-radius: 12px 12px 0 0;
            }
			.glass-type-cards {
				gap: 24px;
				padding: 25px 0;
			}			
        }

        /* Benefits Section */
        .benefits-section {
            padding: 0 20px 40px 20px;
        }

        .benefits-title {
            text-align: center;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            margin: 0 0 12px;
        }

        .benefits-description {
            text-align: center;
            font-size: 16px;
            line-height: 1.6;
            max-width: 680px;
            margin: 0 auto 20px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            justify-items: stretch;
            align-items: stretch;
            margin-top: 40px;
            margin-bottom: 0;
            margin-left: auto;
            margin-right: auto;
        }

        .benefits-grid p {
            margin-bottom: 0;
        }

        .benefits-item {
            display: flex;
            align-items: flex-start;
            background: #f9fafb;
            border-radius: 12px;
            padding: 18px 22px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.04);
            border: 1px solid #1e40af;
            height: 100%;
        }

        .benefits-item i {
            font-size: 30px;
            color: #184fa7;
            margin-right: 16px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .benefits-item h5 {
			font-family: 'Poppins', sans-serif;
			font-weight: 600;
			color: #18323a;
			margin-bottom: 6px;
			font-size: 20px;
			line-height: 1.1;
        }

        .benefits-item p {
            font-size: 1.1rem;
            color: #555;
            margin: 0;
            line-height: 1.3;
        }

        .benefits-item:hover {
            background-color: #ebf7ff;
            color: #fff;
        }

        .benefits-item:hover i {
            color: #f59e0b;
        }

        @media (max-width: 720px) {
			.benefits-section {
				padding: 25px 0 40px 0;
			}
            .benefits-description {
                font-size: 16px;
                line-height: 1.4;
            }
            .benefits-title {
                padding-top: 0;
				line-height: 1.2em;
            }
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .benefits-item i {
                font-size: 26px;
            }
        }

        /* Call to Action */
        .call-to-action {
            background-color: #ffffff;
            border-top: 3px solid #f59e0b;
            border-bottom: 3px solid #f59e0b;
            padding: 0;
        }

        .cta-container {
            max-width: 1170px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .cta-container p {
            margin-bottom: 0 !important;
        }

        .cta-left img {
            max-width: 300px;
            width: 100%;
            height: auto;
            border: 2px solid #444;
            box-shadow: 4px 4px 2px 0 #707070;
        }

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

        .cta-right h2 {
            font-weight: 800;
        }

        .cta-logo {
            width: 300px;
            height: 80px;
            margin: 10px 0 20px 0;
        }

        .cta-right p {
            font-size: 30px;
            font-weight: 700;
            color: #111;
            margin-bottom: 25px;
        }

        @media (max-width: 720px) {
            .cta-container {
                flex-direction: column;
                gap: 10px;
            }
            .cta-left img {
                max-width: 250px;
            }
            .cta-right h2 {
                margin-bottom: 0;
                font-size: 22px;
            }
            .cta-logo {
                width: 100%;
                margin: 10px 0 0 0;
            }
            .cta-right p {
                font-size: 22px;
                line-height: 1;
            }
            .cta-right h2 br {
                display: none;
            }
        }

        .call-to-action-phone {
            text-align: center;
            margin-top: 15px;
            margin-bottom: 0;
        }

        .call-to-action-phone p {
            margin-bottom: 2px;
        }

        /* Request Estimate */
        .request-estimate {
            text-align: center;
            padding: 40px 20px;
        }

        .request-estimate-btn {
            font-size: 20px;
            text-decoration: none;
            color: #ffffff;
            display: inline-block;
            border: 1px solid #f59e0b;
            border-radius: 10px;
            padding: 15px;
            background: #f59e0b;
        }

        .request-estimate-btn:hover {
            background: #153e75;
            border: 1px solid #153e75;
            color: #ffffff;
        }

        .request-estimate-btn .fa-solid {
            color: #fff;
        }

        @media (max-width: 720px) {
            .request-estimate-btn {
                font-size: 18px;
                font-weight: 600;
                padding: 15px 10px;
            }
        }

        /* FAQ Styles */
        .faq-section {
            padding: 40px 20px;
        }
		
        .faq-section h2 {
            text-align: center;
			margin-bottom:  20px;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800 !important;
            margin: 0 0 12px;
        }		

        .faq-item {
            border: 1px solid #e2e2e2;
            border-radius: 10px;
            width: 100%;
            max-width: 800px;
            margin: 0 auto 10px;
            background: #fff;
        }

        .faq-question {
            background: #f9fafb;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 10px;
        }

        .faq-question:hover {
            background: #f3f4f6;
        }

        .faq-answer {
            padding: 15px 20px;
            display: none;
            font-size: 16px;
            line-height: 1.6;
        }

        .faq-answer.active {
            display: block;
        }

        @media (max-width: 768px) {
            .faq-question {
                font-size: 16px;
                line-height: 1.4;
            }
            .faq-answer {
                font-size: 16px;
                line-height: 1.4;
            }
        }
		
		.browse-locations-title {
		font-size: clamp(22px, 3vw, 30px);
		font-weight: 800;
		margin: 0 0 12px;
		text-align: center;
		font-family: Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
		}

		.browse-locations-intro {
		text-align: center;
		font-size: 16px;
		line-height: 1.5;
		}

		@media (max-width: 720px) {
		.browse-locations-intro {
		font-size: 15px;
		}
		.browse-locations-intro br {
		 display: none;
		}
		}

		.browse-locations-navigation{
		border-top: 0px solid #e5e7eb;
			border-bottom: unset !important;
			background: #fff;
			margin: auto;
			max-width: 1200px;
		}
		.browse-locations-navigation ul{
		list-style: none;
		margin: 0;
		padding: .6em;
		display: grid;
		gap: .6em;
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
		}
		.browse-locations-navigation a{
		display: block;
		text-align: center;
		text-decoration: none;
		font-size: 15px;
		padding: .5em .8em;
		border-radius: 10px;
		border: 1px solid #e5e7eb;
		color: inherit;
		position: relative;
		padding-left: 2em;
		}
		.browse-locations-navigation a:hover,
		.browse-locations-navigation a:focus{
		border-color: #1e40af;
		color: #1e40af;
		outline: 0;
		}
		.browse-locations-navigation a::before{
		content: "\f3c5";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		position: absolute;
		left: .7em;
		top: 50%;
		transform: translateY(-50%);
		opacity: .85;
		color: #1e40af;
		}

		@media (min-width: 992px){
		.browse-locations-navigation ul{
		grid-template-columns: repeat(5, 1fr) !important;
		}
		}

		@media (max-width: 640px){
		.browse-locations-navigation ul {
		grid-template-columns: repeat(2, 1fr);
		}
		}	

		.mobile-call-button {
		  display: none;
		  position: fixed;
		  bottom: 0;
		  left: 0;
		  right: 0;
		  background-color: #c41310;
		  color: #fff;
		  text-align: center;
		  font-size: 17px;
		  font-weight: bold;
		  text-decoration: none;
		  padding: 14px 0;
		  z-index: 9999;
		  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
		}

		.mobile-call-button span {
		  display: inline-block;
		  vertical-align: middle;
		}

		@media (max-width: 768px) {
		  .mobile-call-button {
			display: block;
		  }
		}
