/* Custom CSS for Septic Services Section and List Styling */

/* Centered list with bullets beside text */
.septic-services ul {
    list-style: none;
    padding: 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.septic-services ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    text-align: left;
    display: block;
}

.septic-services ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
}

/* Main heading styling */
.septic-services h1 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Service section styling */
.septic-services {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.septic-services h2 {
    color: #495057;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
    display: inline-block;
}

.septic-services p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .septic-services {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .septic-services ul {
        width: 100%;
    }
    
    .septic-services ul li {
        padding-left: 20px;
        font-size: 14px;
    }
}