/*
==================
    ABOUT PAGE
==================
*/
.about-gift {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-gift h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #7A5AF8;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}

.about-gift h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7A5AF8, #C26BF5);
    margin: 14px auto 26px;
    border-radius: 3px;
}

.about-gift p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #333;
    max-width: 720px;
    margin: auto;
}

.about-gift::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 360px;
    height: 360px;
    background: url('/img/GiftBox.png') no-repeat center/contain;
    opacity: 0.12;
    pointer-events: none;
}


/*
==================
    ABOUT PAGE
==================
*/
.about-gift {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-gift h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #7A5AF8;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}

.about-gift h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7A5AF8, #C26BF5);
    margin: 14px auto 26px;
    border-radius: 3px;
}

.about-gift p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #333;
    max-width: 720px;
    margin: auto;
}

.about-gift::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 360px;
    height: 360px;
    background: url('/img/GiftBox.png') no-repeat center/contain;
    opacity: 0.12;
    pointer-events: none;
}


/*
======================================
    RESPONSIVE CODE (SMALL MOBILE)
======================================
*/
@media (max-width: 480px) {
    .about-gift {
        margin: 40px 16px;
        padding: 40px 20px;
    }

    .about-gift h2 {
        font-size: 1.7rem;
    }

    .about-gift p {
        font-size: 1rem;
    }

    .about-gift::before {
        width: 200px;
        height: 200px;
    }
}

/*
================================
    RESPONSIVE CODE (MOBILE)
================================
*/
@media (max-width: 768px) {
    .about-gift {
        margin: 50px 20px;
        padding: 50px 24px;
    }

    .about-gift h2 {
        font-size: 2rem;
    }

    .about-gift p {
        font-size: 1.05rem;
    }

    .about-gift::before {
        width: 260px;
        height: 260px;
    }
}

/*
================================
    RESPONSIVE CODE (TABLET)
================================
*/
@media (min-width: 769px) and (max-width: 1024px) {
    .about-gift {
        margin: 60px auto;
        padding: 55px 28px;
        max-width: 780px;
    }

    .about-gift h2 {
        font-size: 2.2rem;
    }
}