.suez-our-story-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    background-color: #F7FAFC; /* Light gray background for the section */
}

.suez-our-story-container {
    display: flex;
    background-color: #FFFFFF; /* White background for the content box */
    border-radius: 15px;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.suez-our-story-left-column {
    flex: 1;
    background-color: #1A365D; /* Dark blue from the image */
    min-height: 400px; /* Ensure it has some height */
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.suez-our-story-right-column {
    flex: 1.5;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suez-our-story-title {
    font-size: 48px;
    font-weight: 700;
    color: #1A365D; /* Dark blue from the image */
    margin-bottom: 30px;
    text-align: center;
}

.suez-our-story-content {
    font-size: 16px;
    line-height: 1.8;
    color: #4A5568; /* Dark gray for readability */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .suez-our-story-container {
        flex-direction: column;
        margin: 0 20px;
    }

    .suez-our-story-left-column {
        min-height: 200px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0;
    }

    .suez-our-story-right-column {
        padding: 30px;
    }

    .suez-our-story-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .suez-our-story-section {
        padding: 50px 0;
    }

    .suez-our-story-right-column {
        padding: 25px;
    }

    .suez-our-story-title {
        font-size: 32px;
    }

    .suez-our-story-content {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .suez-our-story-right-column {
        padding: 20px;
    }

    .suez-our-story-title {
        font-size: 28px;
    }

    .suez-our-story-content {
        font-size: 14px;
    }
}