* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: sans-serif;
            background: url('background.png') no-repeat center center fixed;
            background-size: cover;
            color: #fff;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(12px);
            z-index: 100;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            padding: 0 10vw;
        }

        .logo {
            font-size: 1.5em;
            font-weight: bold;
        }
        .logo a {
            color: #fff;
            text-decoration: none;
        }

        .nav-actions a {
            padding: 10px 20px;
            background-color: #141219;
            color: #fff;
            text-decoration: none;
            border-radius: 999px;
            font-weight: 500;
            font-size: 0.95em;
            outline: 2px solid #7286FF;
        }

        .policy-container {
            max-width: 960px;
            margin: 120px auto 60px;
            padding: 30px 20px;
            background: rgba(0, 0, 0, 0.55);
            color: #ffffff;
            font-size: 1.05em;
            line-height: 1.7;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .policy-container h1 {
            font-size: 2.4em;
            margin-bottom: 20px;
            background: linear-gradient(to right, #7186FF, #FE7587);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }

        .policy-container h2 {
            font-size: 1.5em;
            margin-top: 30px;
            color: #f0f0f0;
        }

        .policy-container p {
            margin-bottom: 20px;
        }

        .footer-bar {
            position: relative;
            /* background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); */
            padding: 20px 10vw;
            color: #D7CDCD;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9em;
            white-space: nowrap;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .navbar {
                padding: 0 5vw;
            }

            .policy-container {
                margin: 100px 5vw 40px;
                padding: 20px;
            }

            .policy-container h1 {
                font-size: 1.8em;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }






.policy-container a {
  color: #9BBEFF; 
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.policy-container a:hover {
  color: #FE7587;
  text-decoration: underline;
}
