.taj-heritage-section {
    background: #f3f2ef;
    padding: 20px 20px;
    text-align: center;
}

/* Logo */

.taj-logo {
    font-family: Cinzel, Palatino Linotype, sans-serif;
    padding-top: 70px;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #b48a2c;
    margin-bottom: 40px;
}

/* Heading Row */

.taj-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
}

.taj-line {
    width: 120px;
    height: 1px;
    background: #bfbfbf;
}

.taj-main-heading {
    font-family: Cinzel, Palatino Linotype, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 30px;          /* Fixed size for desktop */
    line-height: 1.2;
    letter-spacing: -1px;
    color: #45443F;
}

/* Paragraph */

.taj-description {
    max-width: 850px;
    margin: 0 auto;
}

.taj-description p {
    font-family: Cinzel, Palatino Linotype, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: #5f5f5f;
}

/* Image Block */

.taj-heritage-image-wrapper {
    margin-top: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 8px solid #b48a2c;
    overflow: hidden;
}

.taj-heritage-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================= */
/* ======= RESPONSIVE ====== */
/* ========================= */

/* Tablet */

@media (max-width: 992px) {

    .taj-main-heading {
        font-size: 34px;
    }

    .taj-line {
        width: 70px;
    }

    .taj-description p {
        font-size: 17px;
    }

    .taj-heritage-image-wrapper {
        margin-top: 50px;
        border-width: 6px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .taj-logo {
        font-size: 30px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .taj-heading-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .taj-line {
        width: 50px;
    }

    .taj-main-heading {
        font-size: 26px;
        line-height: 1.3;
        letter-spacing: 0;
        white-space: normal;   /* Important fix */
        padding: 0 10px;
    }

    .taj-description p {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 10px;
    }

    .taj-heritage-image-wrapper {
        margin-top: 40px;
        border-width: 4px;
    }
}

/* Small Mobile */

@media (max-width: 480px) {

    .taj-main-heading {
        font-size: 22px;
    }

    .taj-description p {
        font-size: 15px;
    }
}