html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Open Sans", sans-serif;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/images/hero-image.jpg') center/cover no-repeat;
    color: #FFFF00;
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
    position: relative;
    text-align: center;
}

.hero-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
}

.hero-logo {
    width: 170px;
    height: 170px;
    transition: transform 0.3s, opacity 0.3s;
}

.hero-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.hero-content {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-title {
    font-family: Helvetica, Arial, sans-serif;
    text-shadow: 1px 1px #fe4902, 2px 2px #fe4902, 3px 3px #fe4902;
    font-size: 3.2rem;
    line-height: 1.1;
    color: #F0E68C;
    margin: 0 0 1.5rem;
    font-weight: 900;
}

.hero-subtitle,
.hero-subheadline {
    color: yellow;
    font-weight: 700;
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    margin: 0 0 0.75rem;
}

.hero-subheadline {
    font-size: 1.4rem;
    margin: 0 0 1.5rem;
}

h2,
h3,
h4 {
    color: yellow;
    font-weight: 700;
    font-family: Helvetica, Arial, sans-serif;
}

.benefits-section {
    background: linear-gradient(135deg, #d4f1c5 0%, #91c788 100%);
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    color: #FFFF00;
    padding: 3rem 1rem;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit {
    position: relative;
    width: 200px;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: inset 5px 5px rgba(0, 0, 0, 0.3);
    color: #FFFF00;
    overflow: hidden;
}

.benefit-benefits {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: #ffffff;
}

.benefit-testimonials {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: #ffffff;
}

.benefit-process {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: #ffffff;
}

.benefit-replacements {
    background: linear-gradient(135deg, #9c27b0, #ce93d8);
    color: #ffffff;
}

.benefit h3,
.benefit p {
    color: #ffffff;
}

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

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
}

.step {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: rotateX(5deg) rotateY(-5deg);
}

.cta-section {
    background: #3A7D44;
    color: #7ebc59;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
    padding: 3rem 1rem;
}

.cta-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.cta-btn {
    background: #fff;
    color: #3A7D44;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s, color 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: #FFFF00;
    color: #fff;
    transform: scale(1.05);
}

.site-footer {
    background: #2D5E33;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: bold;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #FFFF00;
}

.social-media a {
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .hero-logo-container {
        padding: 0.75rem;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }

    .hero-content {
        padding-top: 7rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .benefit {
        width: 100%;
        max-width: 320px;
    }

    .cta-section h3 {
        font-size: 1.4rem;
    }
}