body {
    margin: 0;
    padding: 0;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.8;
    z-index: -1;
}

.service-container {
    font-family: 'Arial', sans-serif;
    padding-top: 100px;
}

.service-details {
    background-image: linear-gradient(to bottom, #f8f8f8, #80deffc7 50%, #f8f8f8);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
    color: black;
    font-size: 16px;
}

.service-details:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-details h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.service-details p {
    line-height: 1.8;
    font-size: 1.1em;
}

.service-details ul {
    padding-left: 0;
}

.service-details ul li {
    padding-left: 25px;
    margin: 10px 0;
    font-size: 1.1em;
}

.highlight {
    color: #ff6600;
    font-weight: bold;
}

.contact-info {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2em;
    color: white;
}

.contact-info a {
    color: #ff6600;
    text-decoration: none;
}

.action-buttons {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.heading {
    font-size: 3rem;
    font-weight: bold;
    height: 48px;
    font-family: Rancho, cursive;
}