/* ==================== ROOT & VARIABLES ==================== */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

/* ==================== POLICY CONTAINER ==================== */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
}

.policy-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--secondary-color);
}

.back-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==================== POLICY CONTENT ==================== */
.policy-content {
    line-height: 1.8;
}

.policy-content section {
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-content p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.policy-content li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.policy-content strong {
    color: var(--primary-color);
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px 15px;
    }

    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
    }

    .policy-content p {
        font-size: 0.95rem;
    }
}
