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

.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: 100vw;
    height: 100vh;
    overflow-y: auto;
    position: relative;
    font-family: "Open Sans", sans-serif;
    text-align: center;
}

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

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

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

.hero-content {
    padding-top: 4rem;
}

.hero-title {
    font-family: Helvetica, Arial, Bold, Sans-Serif;
    text-shadow: 1px 1px #fe4902, 2px 2px #fe4902, 3px 3px #fe4902;
    font-size: 4.9rem;
    color: #F0E68C;
    margin-bottom: 5rem;
    font-weight: 900;
}

.hero-subtitle, .hero-subheadline, h2, h3, h4 {
    color: yellow;
    font-weight: 700;
    font-family: Helvetica, Arial, Sans-Serif;
}

.hero-subtitle {
    font-size: 5rem;
    margin-bottom: 0.5rem;
}

.hero-subheadline {
    font-size: 4rem;
    margin-bottom: 2rem;
}

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

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

 /* Unique Colors for Each Benefit */
    .benefit-benefits {
        background: linear-gradient(135deg, #4caf50, #8bc34a); /* Green Gradient */
        color: #ffffff;
    }

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

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

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

    /* Adjust Text Colors */
    .benefit h3 {
        color: #ffffff; /* Ensure contrast against the gradient backgrounds */
    }

    .benefit p {
        color: #ffffff; /* Ensure text is legible on the gradient backgrounds */
    }
}
.benefit:hover {
    transform: translateY(-5px);
}

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

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

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

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

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

