@charset "UTF-8";
/* CSS Document */
body {
    margin:0;
    padding:0;
    font-family:"Helvetica Neue","Helvetica","Arial","sans-serif";
    font-weight:400;
    color:#153757;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
header {
    padding:15px 0px;
    background-color:#0b4778;
}
.wrapper {
    max-width:1100px;
    padding:0px 15px;
}
header .wrapper {
    padding:0px 12px;
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin: 0 auto;
}
header img.logo {
    height:45px;
    background-color:#fff;
    border-radius:50%;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color:#fff;
    font-family:Georgia,Cambria,Times New Roman,Times;
    font-size:18px;
    font-weight:400;
}
a.number {
    text-decoration: none;
    font-weight:700;
    font-size:22px;
    color:#fff;
}
a.number .icon {
    margin-right:5px;
}
.announcement {
    border-top:1px solid #c4c4c4;
    border-bottom:1px solid #c4c4c4;
    padding:12px 0px;
    display:flex;
    justify-content: center;
    align-items: center;
    display:none;
}
.reviews-header {
    display:flex;
    align-items: center;
    color:#191919;
    font-family:"Helvetica Neue","Helvetica","Arial","sans-serif";
    font-weight:500;
    gap:15px;
}
ul.stars-header {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap:4px;
}
ul.stars-header li {
    background-color: #52b47f;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}
ul.stars-header .icon-star {
    width: 100%;
}
.number-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 15px;
    color:#fff;
    display:none;
}

/* Quiz Container Styles */

button, a, input, select, div {
  -webkit-tap-highlight-color: transparent;
}

.quiz-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 25px 35px;
}

.quiz-container-2 {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    display:flex;
    flex-direction:column;
    align-items:Center;
}
.quiz-container-2 .titles {
    display:flex;
    flex-direction:column;
    align-items: center;
}
.quiz-container-2 h1 {
    margin:0px;
    margin-bottom:25px;
    text-align:center;
    font-weight:400;
    font-size:30px;
    line-height:36px;
}
.quiz-container-2 h2 {
    font-size:24px;
    line-height:30px;
    text-align:center;
    font-weight:400;
    margin:0px;
    margin-bottom:20px;
}
.quiz-container-2 img.pointer {
    max-width:100%;
    width:40px;
    margin-bottom:20px;
}
.quiz-container-2 .answers {
    max-width: 180px;
    margin: 0 auto;
}
.quiz-container-2 .question h2 {
    margin-bottom:20px;
    font-weight:400;
}
.quiz-container-2 .answer-option {
    text-align:Center;
    color:#fff;
    font-size:24px;
    padding:20px;
    background-color:#e17f0e;
    border:1px solid #e0e0e0;
}
/* Progress Bar */
.progress-container {
    background: #f0f0f0;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transition: width 0.5s ease;
    border-radius: 10px;
    position:relative;
}
.progress-bar:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    z-index: 1;
    background-size: 50px 50px;
    animation: move 3s linear infinite;
    overflow: hidden;
}

/* Question Styles */
.question-wrapper {
    padding-bottom:20px;
    position: relative;
}

.question {
    display: none;
    animation: fadeInUp 0.5s ease;
    opacity: 0;
}

.question.active {
    display: block;
    opacity: 1;
}

.question h2 {
    color:#153757;
    font-size: 28px;
    margin-bottom: 25px;
    line-height: 34px;
    text-align:center;
    font-weight:700;
    margin-top:0px;
}

.question-subtext {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    text-align:center;
}

/* Answer Options */
.answers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding:0px 30px;
}

.answer-option {
    background: white;
    border: 2px solid #0076d6;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 22px;
    color: #0076d6;
    position: relative;
    overflow: hidden;
    font-weight:500;
    line-height:20px;
    text-align:center;
    transition:200ms all;
}

.answer-option:hover {
    background-color: #0076d6;
    color: white;
    border-color: #0076d6;;
}

/* State Confirmation Styling */
.state-highlight {
    color: #4CAF50;
    font-weight: 600;
}

/* Results Section */
.results-section {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.results-section.active {
    display: block;
}

.qualification-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 20px 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.qualification-box h3 {
    color: #4CAF50;
    font-size: 24px;
    line-height:30px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 0px;
}

.qualification-item {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.checkmark {
    color: #4CAF50;
    font-size: 20px;
    margin-right: 2px;
}

/* Call to Action */
.cta-container {
    text-align: center;
    margin-top: 20px;
}

.call-button {
    background-color:#0076d6;
    color: white;
    padding: 18px 35px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 200ms all;
}

.call-button:hover {
    background-color:#0b4778;
}

.phone-number {
    font-size: 28px;
    color: #FF5722;
    font-weight: bold;
    margin-top: 15px;
}

/* Urgency Elements */
.urgency-timer {
    background: #FFF3E0;
    border: 2px solid #FF6B35;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.timer-text {
    color: #FF5722;
    font-size: 18px;
    font-weight: 600;
}

.countdown {
    font-size: 24px;
    color: #D84315;
    font-weight: bold;
    margin-top: 5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: green;
    font-size: 15px;
}

/* Loading Spinner */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.loading.active {
    display: block;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0076d6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
.button-inner {
    display:flex;
    align-items:center;
    gap:15px;
}
.button-inner .icon {
    font-size:25px;
}

.results-section h1 {
    margin-top: 0px;
    text-align: center;
    font-size: 28px;
    line-height: 32px;
}
.results-section .sub {
    font-size:18px;
    line-height:24px;
    text-align:center;
}
footer {
    background-color:#112f4e;
    padding:30px 0px;
}
footer .wrapper {
    margin:0 auto;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #a1d3ff;
}
footer img.logo {
    height:60px;
    background-color:#fff;
    border-radius:50%;
}
footer .name {
    color: #cfe8ff;
    font-size: 15px;
}
footer .name-org {
    color: #fff;
    font-weight: bold;
}
.footer-logo-text {
    display:flex;
    flex-direction:column;
    gap:3px;
}
.state {
    background: linear-gradient(to right, #0576d6, #035ea2);
    color: white;
    padding: 15px;
    padding-bottom:30px;
    text-align: center;
    --arrow-cut: 86%;
    clip-path: polygon(0 0, 100% 0, 100% var(--arrow-cut), 50% 100%, 0 var(--arrow-cut));
}
.state h1 {
    margin:0px;
    font-weight:normal;
    font-size:26px;
    max-width: 650px;
    margin: 0 auto;
}
.tap {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 8px;
}
.subtext-2 {
    font-size: 16px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-weight: 500;
    padding-bottom:10px;
    z-index:2;
    position: relative;
    background-color: #fff;
}
.pulse-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #16a34a;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    animation: pulsed 1.5s infinite;
}
.application {
    text-align: center;
    background-color: #FFD;
    padding: 7px 15px;
    color: #000;
    font-size: 14px;
    display: flex;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
}
.application strong {
    margin-right:5px;
}
.subheadline {
    margin-top: 20px;
    font-size: 18px;
    padding: 0px 20px;
    line-height: 24px;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes pulsed {
0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
}

70% {
    box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
}
100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
}
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes move {
    0% {
    background-position: 0 0;
}
100% {
    background-position: 50px 50px;
}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {	
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .state {
        padding: 30px;
        padding-bottom: 40px;
        --arrow-cut: 76%;
    }
    .state h1 {
        font-size:30px;
    }
    .quiz-container {
        padding:45px 35px;
    }
/* Large devices (laptops and desktops, 992px and up) */
@media (min-width: 992px) {
}

