.section-header-banner {
    border-bottom: 1px solid #e9e9e9;
    background-color: #f8f9f9;
    padding: 20px 0;
}

.section-header-container {
    margin: 0 6%;
}

.section-header-title {
    font-size: 35px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

/* Responsive styling */
@media (max-width: 768px) {
    .section-header-title {
        font-size: 28px;
    }
    }

    @media (max-width: 480px) {
    .section-header-title {
        font-size: 24px;
    }
}

.project-section {
    padding: 40px 0;
}

.project-container {
    margin: 0 6%;
}

.project-row {
    display: flex;
    gap: 30px;
}

/* Columns */
.column-left,
.column-right {
    flex: 1 1 50%;
}

/* Image */
.column-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text Section */
.section-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333333;
}

.section-line {
    height: 2px;
    width: 50px;
    background-color: #006605;
    margin-bottom: 10px;
}

.project-list {
    padding-left: 10%;
    margin-bottom: 20px;
}

.project-list li {
    margin-bottom: 10px;
    font-family: Garamond, 'Times New Roman', serif;
}

.project-description,
.project-amenities {
    margin-bottom: 20px;
    font-family: Garamond, 'Times New Roman', serif;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .project-row {
        flex-direction: column;
    }

    .column-left,
    .column-right {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 20px;
    }

    .section-line {
        width: 40px;
    }
}