/*
==================
    ABOUT PAGE
==================
*/
.about {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 30px;
    text-align: center;
    background: #f3e9de;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #6B4F3B;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}

.about h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #C49C6C;
    margin: 12px auto 24px;
    border-radius: 2px;
}

.about p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #5A4636;
    max-width: 700px;
    margin: auto;
}

.about::before {
    content: "\2615";
    font-size: 140px;
    color: rgba(196, 156, 108, 0.15);
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: none;
}


/*
======================================
    RESPONSIVE CODE (SMALL MOBILE)
======================================
*/
@media (max-width: 480px) {
    .about {
        margin: 40px 12px;
        padding: 30px 16px;
    }

    .about h2 {
        font-size: 1.6rem;
    }

    .about p {
        font-size: 0.9rem;
    }

    .about::before {
        display: none;
    }
}


/*
================================
    RESPONSIVE CODE (MOBILE)
================================
*/
@media (max-width: 767px) {
    .about {
        margin: 50px 15px;
        padding: 35px 18px;
        border-radius: 10px;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about h2::after {
        width: 50px;
        margin: 10px auto 18px;
    }

    .about p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .about::before {
        font-size: 60px;
        top: 10px;
        right: 10px;
    }
}

/*
================================
    RESPONSIVE CODE (TABLET)
================================
*/
@media (max-width: 1199px) {
    .about {
        max-width: 760px;
        margin: 70px auto;
        padding: 50px 25px;
    }

    .about h2 {
        font-size: 2.1rem;
    }

    .about p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .about::before {
        font-size: 100px;
        top: 15px;
        right: 15px;
    }
}