/* Hero Section */
.hero-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.hero-row {
    display: flex;
    align-items: center;
}

.hero-content {
    padding-right: 30px;
}

.hero-media {
    display: flex;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background-color: #f1f1fa;
    color: #fab900;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-headline {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: #333;
}

.hero-subheadline {
    font-size: 18px;
    color: #678;
    margin-bottom: 30px;
    line-height: 1.6;
}

.host-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.host-hero-links .findlocation {
    padding: 0;
    color: #666;
    background: transparent;
    text-decoration: underline;
}

.hero-image,
.benefits-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: 1000 / 667;
    object-fit: cover;
    border-radius: 8px;
}

.hero-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-image {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Social Proof */
.social-proof-strip {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.social-proof-item {
    display: inline-block;
    margin: 0 20px;
    color: #555;
    font-weight: 500;
    font-size: 21px;
}

.social-proof-item i {
    color: #fab900;
    margin-right: 5px;
}

/* Icon Box Overrides */
.icon-box-2 {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.icon-box-2 i {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: rgba(249, 25, 66, 0.07);
    color: #fab900;
    font-size: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box-2 h3 {
    min-height: 3.5em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

/* Flexbox Utilities */
.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.vertical-center-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Calculator Section */
.calculator-section {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.calculator-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calc-result {
    font-size: 24px;
    font-weight: bold;
    color: #fab900;
    margin-top: 10px;
}

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

.benefit-item {
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

/* Safety Section */
.safety-section {
    background-color: #fff;
    padding: 80px 0;
}

.safety-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    height: 100%;
}

.safety-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Final CTA */
.final-cta-section {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.final-cta-section h2 {
    color: #fff;
    margin-bottom: 15px;
}

.final-cta-section p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Tablet and mobile adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-row {
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        padding-right: 15px;
        text-align: center;
    }

    .hero-media {
        order: -1;
        width: 100%;
        margin-bottom: 30px;
    }

    .equal-height-row,
    .vertical-center-row {
        display: block;
    }

    .icon-box-2 {
        margin-bottom: 30px;
        height: auto;
    }

    .benefits-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-headline {
        font-size: 32px;
    }

    .social-proof-item {
        display: block;
        margin: 10px 0;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .calculator-section,
    .benefits-section,
    .safety-section,
    .faq-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .calculator-box {
        padding: 20px;
    }
}
