body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f5f7fa;
    color: #333333;
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
    box-sizing: border-box;
}

h1, h2, h3 {
    color: #1e3a8a;
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.sub-headline {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: #333333;
}

.highlight-red {
    color: #dc2626;
    font-weight: bold;
}

.highlight-green {
    color: #059669;
    font-weight: bold;
}

.high-contrast-text {
    color: #1e3a8a;
}

#question-container {
    margin-bottom: 2rem;
}

#answer-options {
    display: flex;
    flex-direction: column;
}

button {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(37, 99, 235, 0.15);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

#progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 5px;
    margin-top: 2rem;
    overflow: hidden;
}

#progress {
    width: 0;
    height: 100%;
    background-color: #2563eb;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.results-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.result-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #3498db;
    display: flex;
    align-items: center;
}

.result-card h3 i {
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.result-card p {
    margin: 0.5rem 0;
}

.monthly-cost {
    font-size: 1.2em;
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 5px;
    display: inline-block;
}

.monthly-cost.current-cost {
    color: #e74c3c;
    background-color: #f9e7e7;
}

.monthly-cost.savings {
    color: #2ecc71;
    background-color: #e8f8f5;
}

.result-card.highlight {
    background-color: #3498db;
    color: white;
}

.result-card.highlight h3 {
    color: #ecf0f1;
}

.call-to-action {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f39c12;
    border-radius: 10px;
    color: white;
}

.call-to-action h3 {
    margin-bottom: 1rem;
    color: white;
}

#call-now-btn {
    background-color: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#call-now-btn:hover {
    background-color: #c0392b;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
        max-width: 100%;
        border-radius: 0;
    }

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

    h1 {
        font-size: 1.5rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    button {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .result-card {
        padding: 1rem;
    }

    .monthly-cost {
        font-size: 1em;
    }
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
}
/* Styles for thank you message */
.urgent {
    background-color: #ef4444;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 5px;
}

.savings {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #059669;
}

.call-to-action {
    text-align: center;
    margin-top: 30px;
}

#call-now-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#call-now-btn:hover {
    background-color: #1d4ed8;
}

.timer {
    text-align: center;
    font-size: 1.5em;
    margin-top: 20px;
    font-weight: bold;
    color: #1e3a8a;
}

/* Reviews Section Styles */
.reviews-container {
    background-color: #f5f7fa;
    padding: 4rem 0;
    width: 100%;
}

.reviews-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.reviews-content h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: bold;
}

.reviews-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.review-card {
    flex: 1;
    min-width: 0; /* This allows the cards to shrink below their content size */
}

.review-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reviewer-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.review-stars {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.review-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.review-content p {
    color: #34495e;
    font-style: italic;
}

@media (max-width: 768px) {
    .reviews-grid {
        flex-direction: column;
    }

    .reviews-content h2 {
        font-size: 2rem;
    }
}

.how-it-works-container {
    background-color: #f5f7fa;
    padding: 4rem 0;
    width: 100%;
}

.how-it-works-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.how-it-works-content h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: bold;
}

.flowchart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.step {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-basis: 30%;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-icon {
    background-color: #3498db;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: -3.5rem auto 1.5rem;
    border: 6px solid #f5f7fa;
}

.step-content h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: #34495e;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.arrow {
    flex-basis: 5%;
    font-size: 2rem;
    color: #3498db;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .flowchart {
        flex-direction: column;
    }

    .step {
        flex-basis: 100%;
        margin-bottom: 4rem;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 600px) {
    .how-it-works-content {
        padding: 0 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .how-it-works-content h2 {
        font-size: 2rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: -3rem auto 1rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
}
#countdown-timer {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
    font-size: 0.9em;
}

#countdown-timer p {
    font-size: 1em;
    margin-bottom: 5px;
    color: #fff;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff6b6b;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px;
    min-width: 40px;
    display: inline-block;
}

.countdown-label {
    font-size: 0.7em;
    color: #fff;
    margin-top: 2px;
}

.countdown-expired {
    font-size: 1.5em;
    color: #ff6b6b;
    font-weight: bold;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

#countdown-timer {
    animation: pulse 2s infinite;
}

.faq-container {
    background-color: #ffffff;
    padding: 4rem 0;
    width: 100%;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.faq-content h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background-color: #f5f7fa;
    border: none;
    padding: 1rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.faq-question::after {
    content: '\25BC';
    float: right;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    background-color: #ffffff;
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1rem;
}

@media (max-width: 600px) {
    .faq-content {
        padding: 0 1rem;
    }

    .faq-content h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

.cta-button {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 1rem;
    background-color: #e74c3c;
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}