        :root {
            --primary: #E4A752;
            --primary-dark: #da8661;
            --secondary: #2e3f61;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #555;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            background-color: #fafafa;
            line-height: 1.8;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--secondary);
        }

        .policy-header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('{{asset("assets/image/about.jpg")}}');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: white;
            text-align: center;
            margin-bottom: 60px;
        }

        .policy-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
			color:var(--light)
        }

        .policy-container {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }

        .policy-card {
            background-color: var(--white);
            padding: 50px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .policy-section {
            margin-bottom: 40px;
        }

        .policy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
        }

        .policy-section h3 {
            font-size: 1.4rem;
            margin: 30px 0 15px;
            color: var(--secondary);
        }

        .policy-section p, .policy-section ul {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .policy-section ul {
            padding-left: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
        }

        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .cookie-type {
            flex: 1;
            min-width: 200px;
            background: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary);
        }

        .cookie-type h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .cookie-type p {
            font-size: 1rem;
        }

        .update-date {
            font-style: italic;
            color: #777;
            margin-bottom: 30px;
        }

        .contact-info {
            background: rgba(228, 167, 82, 0.1);
            padding: 25px;
            border-radius: var(--radius);
            margin-top: 40px;
        }

        .contact-info p {
            margin: 5px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .policy-header {
                padding: 80px 0;
            }
            
            .policy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-card {
                padding: 30px;
            }
            
            .cookie-types {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .policy-header h1 {
                font-size: 1.8rem;
            }
            
            .policy-card {
                padding: 25px;
            }
            
            .policy-section h2 {
                font-size: 1.5rem;
            }
        }
