        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #4a3f2e;
        }

        .privacy-bg {
            min-height: 100vh;
            background-image: url('../images/BannerImage1.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 40px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .privacy-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .privacy-modal {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            max-width: 800px;
            width: 100%;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .privacy-modal::before,
        .privacy-modal::after {
            content: '';
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 1;
            pointer-events: none;
            z-index: 0;
        }

        .privacy-modal::before {
            width: 180px;
            height: 180px;
            background-image: url('../images/decoLeft1.png');
            bottom: 20px;
            left: 20px;
        }

        .privacy-modal::after {
            width: 180px;
            height: 180px;
            background-image: url('../images/decoRight1.png');
            top: 20px;
            right: 20px;
        }

        .content-wrapper {
            padding: 40px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .privacy-title-wrapper {
            text-align: center;
            margin-bottom: 30px;
            padding: 30px 20px;
            border-bottom: 2px solid #e6d0af;
            position: relative;
            overflow: hidden;
        }

        .privacy-title-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('../images/bg-date-banner-1.png');
            background-size: cover;
            background-position: center;
            opacity: 0.5;
            z-index: -1;
        }

        .privacy-title-wrapper::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            background-image: url('../images/deco1.png');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .content-wrapper::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-image: url('../images/deco1(1).png');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .privacy-title {
            font-size: 32px;
            font-weight: 700;
            color: #6a4e23;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        p {
            margin-bottom: 20px;
            font-size: 16px;
            text-align: justify;
            position: relative;
            z-index: 1;
        }

        strong {
            color: #6a4e23;
            font-weight: 600;
        }

        .contact {
            margin-top: 30px;
            padding: 30px 40px;
            text-align: center;
            display: inline-block;
            position: relative;
            background-image: url('../images/bg1.png');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
        }

        .contact::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            z-index: 0;
        }

        .contact > * {
            position: relative;
            z-index: 1;
        }

        .contact strong,
        .contact {
            color: #6a4e23;
        }

        .contact a {
            color: #6a4e23;
            text-decoration: none;
            font-weight: 600;
        }

        .contact a:hover {
            text-decoration: underline;
        }

        .back-home-fixed {
            position: fixed;
            top: 20px;
            left: 20px;
            background: #6a4e23;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            z-index: 9999;
        }

        .back-home-fixed:hover {
            background: #8b6332;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .content-wrapper {
                padding: 30px 20px;
            }

            .privacy-title {
                font-size: 24px;
            }

            p {
                font-size: 15px;
            }

            .back-home-fixed {
                top: 10px;
                left: 10px;
                padding: 10px 20px;
                font-size: 14px;
            }
        }
