body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('images/color_logo.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(18, 18, 18, 0.7); 
    color: #fff;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo {
    margin-left: 20px; 
    margin-bottom: 10px;
    margin-top: 10px;
}

header .logo img {
    height: 80px; 
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 10px;
    margin-right: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-right: 20px;
}

.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.hero-content {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin: 0;
}

.hero-content p {
    font-size: 1.5em;
    margin: 20px 0;
}

.hero-content .btn {
    background-color: #ff9900;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.5em;
}

.hero-content .btn:hover {
    background-color: #cc7a00;
}

.content {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    border-radius: 10px;
    max-width: 1000px;
    font-size: 1.5em;
}

.fb-page {
    text-align: center;
    margin: 20px auto;
    max-width: 100%;
}

.fb-page iframe {
    width: 100%;
    height: auto;
    max-width: 180px;
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8em;
}

.contact-info {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.contact-info a {
    color: #02ccfe;
    text-decoration: none;
}

contact-info a:hover {
    text-decoration: underline;
}

.free-estimate-link {
    color: #02ccfe;
    text-decoration: none;
}

.free-estimate-link:hover {
    text-decoration: underline;
}

form {
    display: none;
}

@media (max-width: 768px) {
    body {
        background-image: url('images/color_logo_mobile.jpeg');
        background-attachment: scroll; 
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        text-align: center;
    }

    header .logo {
        margin: 10px auto;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li a {
        text-transform: uppercase;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .hero-content .btn {
        font-size: 1.2em;
        padding: 10px 20px;
    }

    .content {
        padding: 20px;
        margin: 20px auto;
        font-size: 1.2em;
    }

    footer {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    header .logo img {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .hero-content .btn {
        font-size: 1em;
        padding: 8px 16px;
    }

    .content {
        padding: 10px;
        margin: 10px auto;
        font-size: 1em;
    }

    footer {
        font-size: 0.6em;
    }
}

.service-row {
    display: flex;
    align-items: center;
    margin: 20px 0;
    justify-content: space-between;
}

.service-image, .service-list {
    flex: 1;
    padding: 10px;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

.service-list p {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
        text-align: center;
    }

    .service-image, .service-list {
        margin: 10px 0;
    }
}
