/* Privacy Policy CSS - privacy-policy.css */

/* CSS Variables */
:root {
  /* Neutrals */
  --white: rgb(255, 255, 255);
  --black: rgb(0, 0, 0);
  --gray-light: rgb(224, 227, 229);
  --gray-medium: rgb(168, 165, 165);
  --gray-dark: rgb(114, 114, 114);
  --gray-darker: rgb(88, 88, 88);
  --gray-background: rgb(239, 241, 242);

  /* Primary Action Blue */
  --blue-light: rgb(88, 182, 230);
  --blue: rgb(0, 136, 203);
  --blue-dark: rgb(6, 72, 199);
  --blue-deep: rgb(13, 30, 120);

  /* Text Variables */
  --text-primary: var(--blue-light);
  --text-secondary: var(--gray-medium);
  --text-font: 'Roboto', sans-serif;
}

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

/* Body */
body {
    font-family: var(--text-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-primary);
    position: relative;
    background-color: var(--gray-background);
}

/* Background Image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('clearpointImage2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: -2;
    opacity: 0.15;
    will-change: transform;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    word-spacing: 2px;
    color: var(--blue-light);
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    word-spacing: 2px;
    color: var(--blue-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Lists */
ul {
    color: var(--text-secondary);
    margin: 15px 0;
    padding-left: 30px;
}

ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Links */
a {
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Back to Home Link */
a[href="/"] {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

a[href="/"]:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--white);
}

#home{
color: white; 
text-decoration: none; 
font-weight: 500;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px 10px;
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    ul {
        padding-left: 20px;
    }
}


