.substation-section {
    max-width: 1200px;
    margin: 40px auto;
    background-color: #e9f0e879;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Centered description */
.substation-description {
    text-align: center;
    margin-bottom: 30px;
}
.substation-description p {
    color: #130534;
    line-height: 1.5; /* Slightly increase line height for readability */
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services section */
.substation-services {
    margin-top: 30px;
}
.substation-services h2 {
    color: #363636;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-left: 100px;
}
.substation-services ul {
    list-style: none;
    margin: 0 auto;
    padding-left: 0;
    max-width: 800px;
}
.substation-services ul li {
    font-size: 1.3rem;
    margin-bottom: 10px; /* Add more space between list items */
    display: flex;
    align-items: flex-start;
}
.substation-services ul li::before {
    content: "•"; /* Custom bullet symbol */
    color: black; /* Bullet color */
    font-size: 2rem;
    line-height: 0.8;
    margin-right: 8px;
}
.substation-services p {
    margin: 10px;
    font-size: 1.5rem;
    color: #033804;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .substation-section {
        padding: 20px 15px; /* Reduce padding */
    }
    .substation-description p {
        font-size: 1.2rem; /* Reduce font size */
    }
    .substation-services h2 {
        font-size: 1.3rem; /* Adjust heading font size */
        padding-left: 20px; /* Reduce left padding */
    }
    .substation-services ul li {
        font-size: 1.1rem; /* Reduce list item font size */
    }
    .substation-services ul li::before {
        font-size: 1.5rem; /* Reduce bullet size */
    }
}

@media (max-width: 480px) {
    .substation-section {
        padding: 15px 10px; /* Further reduce padding for smaller screens */
    }
    .substation-description p {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
    .substation-services h2 {
        font-size: 1.2rem; /* Further adjust heading font size */
        padding-left: 10px; /* Minimal left padding */
    }
    .substation-services ul li {
        font-size: 1rem; /* Reduce list item font size */
    }
    .substation-services ul li::before {
        font-size: 1.3rem; /* Adjust bullet size for smaller screens */
    }
}
