.title-banner-wrap {
    background-color: #f8f9f9;
    padding: 20px 0;
}

.inner-title-container {
    margin: 0 6%;
}

.main-title-heading {
    font-size: 35px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .main-title-heading {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .main-title-heading {
        font-size: 24px;
    }
}

/* Section layout */
.section-wrapper {
    padding: 40px 0;
}

.section-container {
    margin: 0 6%;
}

.section-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Columns */
.section-column {
    flex: 1 1 100%;
}

.text-column {
    flex: 1 1 50%;
}

.image-column {
    flex: 1 1 50%;
}

/* Heading */
.section-heading {
    margin-bottom: 15px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.section-underline {
    width: 50px;
    height: 2px;
    background-color: #006605;
    margin-top: 6px;
    border-radius: 2px;
}

/* Description text */
.section-description p {
    font-size: 16px;
    line-height: 1.6;
    font-family: Garamond, 'Times New Roman', serif;
}

/* Image styling */
.image-wrapper {
    width: 100%;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
    .section-row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: flex-start;
    }
    .text-column,
    .image-column {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }

    .section-description p {
        font-size: 14px;
    }
}