.service-asbuilt-section {
    padding: 80px 40px;
    background-color: #000000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separation */
}

.service-asbuilt-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.asbuilt-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.asbuilt-content {
    max-width: 1200px;
    margin: 0 auto;
}

.asbuilt-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: var(--font-body);
    opacity: 0.9;
}

.asbuilt-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-asbuilt-section {
        padding: 50px 20px;
    }

    .asbuilt-title {
        font-size: 28px;
    }

    .asbuilt-text {
        font-size: 16px;
    }
}