
/* Onsite Repairs Page Styles */

.onsite-repairs-page .hero {
    position: relative;
    background-image: url('../images/services-007.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 22px;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Full-width underline for h2 headings */
.service-overview h2, .onsite-benefits h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
    margin: 0 auto 20px;
    display: inline-block;
    border-bottom: 3px solid #D50505;
}

.service-overview h2:hover {
    color: #D50505;
}

.service-overview h2::after, .onsite-benefits h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    
    margin: 10px auto 0; /* Center underline */
}

/* Service Overview Section */
.service-overview {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.service-overview p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-overview p:hover {
    transform: scale(1.05);
    color: #333;
}

/* Onsite Benefits Section */
.onsite-benefits {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.onsite-benefits h2:hover {
    color: #D50505;
}

.onsite-benefits ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.onsite-benefits li {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.onsite-benefits li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #D50505;
    font-weight: bold;
    transition: color 0.3s ease;
}

.onsite-benefits li:hover {
    color: #D50505;
    transform: translateX(10px);
}

.onsite-benefits li:hover:before {
    color: #333;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        padding: 20px;
    }

    .service-overview, .onsite-benefits {
        padding: 40px 10px;
    }

    .onsite-benefits ul {
        text-align: center;
    }

    .onsite-benefits li {
        text-align: center;
        padding-left: 0;
    }

    .onsite-benefits li:before {
        display: none;
    }
}
