/* ============================================
   SERVICES PAGE - services.css
   ============================================ */

/* Service section headings */
.service-heading {
    margin-bottom: 40px;
}

.service-heading h3 {
    position: relative;
    display: inline-block;
}

.service-heading h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ed1c24;
    margin: 15px auto 0;
}

/* Service page headings */
.service-section h2,
.service-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: rgb(90, 20, 10);
}

/* Service page body text */
.service-section p,
.service-section .styled-list li {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgb(10, 0, 0);
}

/* Service sections spacing */
.service-section {
    padding: 60px 0;
}

.service-section .row {
    align-items: flex-start;
}

/* Stacked images layout (Offset and Sustainability) */
.stacked-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stacked-images img {
    width: 100%;
    max-width: 400px;
}

/* Licence section */
.licence-content {
    max-width: 800px;
}

.licence-content h2 {
    margin-bottom: 15px;
}

.styled-list {
    padding-left: 20px;
    margin-bottom: 1em;
}

.styled-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    list-style: disc;
}

/* Responsive */
@media (max-width: 768px) {
    .service-section {
        padding: 40px 0;
    }

    .stacked-images img {
        max-width: 100%;
    }
}
