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;
}

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

.logo-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

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

.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: #2c3e50;
}

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

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

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

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

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

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

button {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    font-size: 1.1rem;
    font-weight: bold;
}

button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* How it works section */
.how-it-works-container {
    background-color: #ffffff;
    padding: 4rem 0;
    width: 100%;
}

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

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

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

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

.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 #ffffff;
}

.step-content h3 {
    color: #3498db;
}

.arrow {
    color: #3498db;
    font-size: 2rem;
}

/* FAQ section */
.faq-container {
    background-color: #f8fafc;
    padding: 4rem 0;
    width: 100%;
}

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

.faq-question {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    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: #f1f5f9;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

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

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

.review-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

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

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

.review-content h3 {
    color: #2c3e50;
}

.review-content p {
    color: #4a5568;
}

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

.cta-button:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}

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

.map-container img {
    width: 100%;
    /* object-fit: cover; */
}


.results-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.results-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.property-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.property-info i {
    color: #3498db;
    font-size: 1.5rem;
}

.costs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cost-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
}

.cost-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cost-label i {
    color: #3498db;
}

.amount {
    font-weight: bold;
    font-size: 1.1rem;
}

.amount.current {
    color: #e74c3c;
}

.amount.new {
    color: #2ecc71;
}

.total-cost {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed #e2e8f0;
    font-weight: bold;
}

.savings-highlight {
    background: #2ecc71;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.savings-percentage {
    font-size: 1.2rem;
    font-weight: bold;
}

.new-cost {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
}

#call-now-btn {
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

#call-now-btn:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .costs-grid {
        grid-template-columns: 1fr;
    }
    
    .results-container {
        padding: 1rem;
    }
}

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

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



/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
}

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

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

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

    .reviews-grid {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    h1 {
        font-size: 1.8rem;
    }

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

    .how-it-works-content,
    .faq-content,
    .reviews-content {
        padding: 0 1rem;
    }
}