:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #ff5e62;
    --text-color: #ffffff;
    --text-secondary: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-bg: rgba(20, 20, 30, 0.7);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background: #0f0c29;
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background Animated Shapes */
.background-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    animation-delay: 0s;
}

.shape-2 {
    bottom: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    animation-delay: -5s;
}

.shape-3 {
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    animation-delay: -10s;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -50px); }
    66% { transform: translate(-20px, 20px); }
}

/* Header & Logo */
header {
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--glass-bg);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px; /* Optional: adds a slight curve if the image is square */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, #b4b4b4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Content */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.policy-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(to right, #fff, #a2c2e9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.company-name {
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #d1d5db;
}

p, li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

ul {
    list-style-position: inside;
    margin-left: 10px;
}

li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

li::marker {
    color: var(--secondary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    margin-top: auto;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0c29;
}

::-webkit-scrollbar-thumb {
    background: #3b3b5c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #50507a;
}

/* Validation & Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.5rem; }
    .policy-card { padding: 25px; }
    .logo-container { padding: 8px 20px; }
}
