/* privacy-policy.css */

/* === Base Theme === */
:root {
    --dark-blue: #1A2A44;
    --accent-blue: #3B82F6;
    --light-blue: #60A5FA;
    --white: #FFFFFF;
    --gray: #D1D5DB;
    --accent-orange: #F28C38; /* Grab-Note's brand color */
}

/* === Hero Section === */
.hero {
    background: linear-gradient(rgba(26, 42, 68, 0.8), rgba(26, 42, 68, 0.8)), url('/projects/grab-it-suite/grab-note/assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    color: var(--white);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: var(--gray);
}

/* === Policy Content === */
.policy-content {
    padding: 50px 20px;
    background-color: var(--dark-blue);
    color: var(--white);
}

.policy-content .container {
    max-width: 800px; /* Narrower for readability */
    margin: 0 auto;
    padding: 0 20px;
}

.policy-content h2 {
    font-size: 1.5em;
    margin: 30px 0 15px;
    color: var(--white);
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    color: var(--gray);
}

.policy-content a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.policy-content code {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-blue);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .policy-content h2 {
        font-size: 1.3em;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.9em;
    }
}