/* Title section */
.custom-title-section {
    background-color: #f8f9f9;
    padding: 20px 0;
}

/* Inner container for layout control */
.custom-title-container {
    margin: 0 6%;
}

/* Title text styling */
.custom-title-text {
    font-size: 35px;
    font-weight: bold;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-title-text {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .custom-title-text {
        font-size: 24px;
    }
}

/* Layout Structure */
.custom-content-wrap {
    padding: 40px 0;
}

.custom-main-area {
    margin: 0 6%;
}

.custom-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.custom-column {
    flex: 1 1 100%;
}

.custom-column-left,
.custom-column-right {
    flex: 1 1 48%;
}

/* Image Styling */
.custom-image-container {
    width: 100%;
}

.custom-responsive-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Heading */
.custom-heading-wrapper {
    margin-bottom: 15px;
}

.custom-heading-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.custom-heading-line {
    width: 50px;
    height: 2px;
    background-color: #006605;
    margin-top: 10px;
    border-radius: 2px;
}

/* Text Block */
.custom-text-block p {
    font-size: 16px;
    line-height: 1.6;
    font-family: Garamond, 'Times New Roman', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-column-left,
    .custom-column-right {
        flex: 1 1 100%;
    }

    .custom-heading-title {
        font-size: 24px;
    }

    .custom-text-block p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .custom-heading-title {
        font-size: 20px;
    }

    .custom-text-block p {
        font-size: 14px;
    }
}
