.distribution-section {
    background-color: #1D8876;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Helvetica', sans-serif;
    text-align: center;
}

.distribution-container {
    max-width: 1100px;
    margin: 0 auto;
}

.distribution-heading {
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
}

.distribution-heading strong {
    font-weight: 700;
}

.distribution-description {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto 45px auto;
}

.distribution-features {
    display: flex;
    justify-content: center;
    max-width: 750px;
    margin: 0 auto;
}

.feature-item {
    max-width: 400px;
    text-align: center;
    position: relative;
    padding: 0 30px;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.4;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:first-child {
    border-left: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
}

.feature-item p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .distribution-features {
        flex-direction: column;
        gap: 30px;
    }
    .feature-item {
        border-left: none;
        padding: 0;
        max-width: none;
    }
    .distribution-heading {
        font-size: 1.5rem;
    }
    .distribution-description {
        font-size: 0.85rem;
        max-width: 100%;
    }
}

.siteplan-section {
    position: relative;
    background-color: #D3E7E4; /* Soft teal background */
    padding: 40px 20px;
    min-height: 1000px; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.siteplan-background {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 1411px; /* match vector.png dimensions */
    height: 882px; /* match vector.png dimensions */
    background-repeat: repeat;
    background-size: contain;
    transform: translateX(-50%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.siteplan-image-wrapper {
    position: relative;
    max-width: 1100px;
    width: 100%;
    z-index: 2;
}

.siteplan-image {
    width: 700px;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
}

/* Responsive adjustments (optional) */
@media (max-width: 768px) {
    .siteplan-section {
        min-height: auto;
        padding: 20px 10px;
    }
    .siteplan-background {
        max-width: none;
        width: 100%;
        height: auto;
    }
    .siteplan-image-wrapper {
        max-width: 100%;
    }
}