﻿
:root {
    --primary: #ccff02;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #111111;
    --gray-light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.7;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.policy-header {
    background-color: var(--black);
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .policy-header::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background-color: var(--primary);
        opacity: 0.1;
        border-radius: 0 0 0 100px;
    }

.policy-header-content {
    position: relative;
    z-index: 1;
}

.policy-logo {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .policy-logo span {
        color: var(--primary);
    }

.policy-logo-icon {
    margin-right: 15px;
    color: var(--primary);
    font-size: 36px;
}

.policy-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.policy-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Policy Navigation */
.policy-nav {
    background-color: var(--gray-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .policy-nav ul {
        display: flex;
        list-style: none;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .policy-nav a {
        text-decoration: none;
        color: var(--black);
        font-weight: 600;
        padding: 10px 25px;
        border-radius: 30px;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

        .policy-nav a:hover,
        .policy-nav a.active {
            background-color: var(--primary);
            color: var(--black);
        }

/* Policy Content */
.policy-content {
    padding: 80px 0;
}

.policy-section {
    margin-bottom: 70px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
}

    .policy-section h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
        color: var(--black);
        display: flex;
        align-items: center;
    }

        .policy-section h2 i {
            margin-right: 15px;
            color: var(--primary);
        }

    .policy-section h3 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
        color: var(--black);
        border-bottom: 2px solid var(--primary);
        padding-bottom: 8px;
    }

    .policy-section h4 {
        font-size: 1.2rem;
        margin: 25px 0 10px;
        color: var(--black);
        display: flex;
        align-items: center;
    }

        .policy-section h4 i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 18px;
        }

    .policy-section p {
        margin-bottom: 15px;
        color: #333;
    }

    .policy-section ul,
    .policy-section ol {
        margin-left: 25px;
        margin-bottom: 20px;
    }

    .policy-section li {
        margin-bottom: 10px;
        color: #333;
        position: relative;
        padding-left: 10px;
    }

        .policy-section li:before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: -15px;
        }

/* Warning/Notice Boxes */
.warning-box {
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid #ffc107;
}

    .warning-box h4 {
        color: #856404;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .warning-box h4 i {
            color: #856404;
            margin-right: 10px;
        }

.important-box {
    background-color: rgba(204, 255, 2, 0.15);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid var(--primary);
}

    .important-box h4 {
        color: var(--black);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .important-box h4 i {
            color: var(--primary);
            margin-right: 10px;
        }

/* Info Box */
.info-box {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid #007bff;
}

    .info-box h4 {
        color: #004085;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .info-box h4 i {
            color: #004085;
            margin-right: 10px;
        }

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.process-step {
    background-color: var(--gray-light);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

    .process-step:hover {
        transform: translateY(-5px);
    }

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 15px;
    border: 3px solid var(--black);
}

.process-step h4 {
    margin-bottom: 10px;
    color: var(--black);
    justify-content: center;
    border-bottom: none;
}

/* Contact Information */
.contact-box {
    background-color: rgba(204, 255, 2, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 2px solid var(--primary);
}

    .contact-box h3 {
        margin-top: 0;
    }

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}

    .contact-item i {
        color: var(--primary);
        margin-right: 15px;
        font-size: 20px;
        margin-top: 3px;
    }

/* Footer */
.policy-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.policy-footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .policy-footer-logo span {
        color: var(--primary);
    }

.policy-footer-logo-icon {
    margin-right: 10px;
    color: var(--primary);
}

.policy-footer p {
    color: #aaa;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

.back-to-home {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

    .back-to-home:hover {
        color: var(--white);
    }

    .back-to-home i {
        margin-right: 8px;
    }

/* Table Styling */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .policy-table th {
        background-color: var(--primary);
        color: var(--black);
        text-align: left;
        padding: 15px;
        font-weight: 700;
    }

    .policy-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .policy-table tr:nth-child(even) {
        background-color: var(--gray-light);
    }

    .policy-table tr:hover {
        background-color: rgba(204, 255, 2, 0.1);
    }

/* Data Collection Box */
.data-box {
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

    .data-box h5 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: var(--black);
    }

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.data-category {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .policy-header {
        padding: 80px 0 50px;
    }

        .policy-header h1 {
            font-size: 2.3rem;
        }

    .policy-logo {
        font-size: 36px;
    }

    .policy-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .policy-nav a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .policy-section {
        padding: 30px 20px;
    }

        .policy-section h2 {
            font-size: 1.8rem;
        }

        .policy-section h3 {
            font-size: 1.3rem;
        }

    .process-steps, .data-categories {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .policy-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }
}
