.page-title-wrap {
    border-bottom: 1px solid #e9e9e9;
    background: #f8f9f9;
    padding: 20px 0px;
}

.page-title-wrap h1 {
    color: #333333;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.container {
    margin: 0 6%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 6%;
    padding: 3% 0;
    gap: 30px;
}

.column {
    flex: 1;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-column h2 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    color: #333333;
}

.text-column h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #006605;
    margin-top: 8px;
}

.text-column p {
    font-size: 16px;
    line-height: 1.6;
    font-family: Garamond, 'Times New Roman', serif;
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
    .page-title-wrap h1 {
        font-size: 1.5rem;
    }

    .row {
        flex-direction: column; /* Stack instead of side-by-side */
    }

    .column {
        flex: 100%;
    }

    .image-column {
        order: 1; /* Image first */
    }

    .text-column {
        order: 2; /* Text second */
        margin-bottom: 5%;
    }
}