html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-image: url('../images/jpeg-optimizer_Background_website_2-transformed.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh; /* Added to ensure full viewport height */
}

.cleaning-services {
    flex: 1 0 auto;
    padding: 2rem 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1 0 auto;
}

.cleaning-services h2 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.vehicle-categories {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.vehicle-categories h3 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.category {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background-color: red;
    color: #ffffff;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.category:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.category-separator {
    display: inline-block;
    margin: 0 0.5rem;
    color: red;
    font-weight: bold;
}

.service-section {
    margin-bottom: 3rem;
}

.service-type {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(255, 0, 0, 0.1);
    padding: 1.5rem;
    width: calc(50% - 1rem);
    max-width: 400px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: red;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.service-card .duration {
    font-style: italic;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style-type: none;
    padding-left: 0;
}

.service-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}
.service-section-supplement {
    border: 2px solid red;
    border-radius: 8px;
    padding: 1rem;
    margin: 2rem auto;
    max-width: 900px;
    background-color: rgba(26, 26, 26, 0.8); /* Semi-transparent dark background */
}

.service-section-supplement .service-type-supplements {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-cards-supplement ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.service-cards-supplement li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-cards-supplement li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-size: 1.2em;
}


.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
}

.service-card .extra-info {
    margin-top: 1rem;
    font-weight: bold;
    color: #e74c3c;
}

.service-card .complete-info {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 1rem;
}

.service-card#complete-silver {
    background-color: #bdc3c7;
}

.service-card#complete-silver h3 {
    color: #2c3e50;
}

.service-card#complete-gold {
    background-color: #f39c12;
}

.service-card#complete-gold h3 {
    color: #2c3e50;
}

.disclaimer {
    color: red;
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.5rem;
}

footer {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cleaning-services h2 {
        font-size: 2rem;
    }

    .vehicle-categories h3 {
        font-size: 1.2rem;
    }

    .category {
        padding: 0.4rem 0.8rem;
        margin: 0.3rem;
        font-size: 0.9rem;
    }

    .service-type {
        font-size: 1.8rem;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .disclaimer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cleaning-services h2 {
        font-size: 1.8rem;
    }

    .vehicle-categories h3 {
        font-size: 1rem;
    }

    .category {
        padding: 0.3rem 0.6rem;
        margin: 0.2rem;
        font-size: 0.8rem;
    }

    .category-separator {
        margin: 0 0.3rem;
    }

    .service-type {
        font-size: 1.6rem;
    }

    .service-card {
        width: 100%;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .disclaimer {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .service-section-supplement {
        max-width: 90%;
    }

    .service-section-supplement .service-type {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .service-section-supplement .service-type {
        font-size: 1.4rem;
    }

    .service-cards-supplement li {
        font-size: 0.9rem;
    }
}