body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    background-color: #f8f9fa;
    color: #333333;
    font-family: 'Roboto', sans-serif;
}



.hero {
    position: relative;
    background: url('/static/img/appliance_scrap_yard.png') no-repeat center center fixed; 
    background-size: cover;
    color: white; /* This will color your text white */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust as needed */
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Adjust as needed */
    z-index: 1;
}

.hero-content {
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    z-index: 2;
} 

.hero h1,
.hero h2 {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-weight: bolder;
    font-size: xxx-large;
    color: #FFFFFF
}

.hero h2 {
    color: #F8F9FA;
    font-size: xx-large;
}

.logo {
    color: #007BFF;
}

.email-form {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: block;
    text-align: center;
    width: max-content;
}

.email-form input {
    display: inline;
}


h1, h2, .cta-button {
    color: #1a237e;
}

h3, a {
    color: #e57373;
}


.content-section {
    background-color: #ffffff;
    /* margin: 1em 0; */
    padding: 2em;
    border-radius: 10px;
}


.cta-button {
    background-color: #1a237e;
    color: #ffffff;
    border: none;
    padding: 1em 2em;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #0d154a;
    cursor: pointer;
}

#call-to-action {
    background-color: #f8f9fa;
    padding: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

form label {
    margin-bottom: 10px;
}

form input[type="email"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

form input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

@media screen and (max-width: 768px) {

    form input[type="email"] {
        width: 100%;
    }
}

section h2 {
    text-align: center;
    font-family: Roboto;
}

.content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.text-content {
    flex: 1;
}

.section-img {
    width: 50vw;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    /* existing styles */

    .content-wrap {
        flex-direction: column;
    }
    
    .section-img {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hide-small {
        display: none;
    }

    .reverse-small {
        flex-direction: column-reverse;
    }
}

#about-app::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.content-section > * {
    position: relative;
    z-index: 2;
}


#about-app {
    background-color: lavender;
}

#benefits {
    /* background-color: gainsboro; */
}

#who-is-it-for {
    background-color: #f8f9fa;
}

#how-it-works {
    background-color: white;
}

#our-vision {
    background-color: lavender;
}