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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.back-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #5a67d8;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.policy-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.policy-section p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section p strong {
    color: #1a202c;
    font-weight: 600;
}

.policy-section p.indent {
    padding-left: 30px;
    margin-bottom: 10px;
}

.policy-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.page-footer {
    text-align: center;
    padding: 30px 20px;
    color: #718096;
    font-size: 14px;
}

.page-footer p {
    margin-bottom: 10px;
}

.page-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-footer a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .page-header {
        padding: 30px 25px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .policy-content {
        padding: 35px 25px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .policy-section p {
        font-size: 15px;
    }

    .policy-section p.indent {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }

    .page-header {
        padding: 25px 20px;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .policy-section h2 {
        font-size: 18px;
    }

    .policy-section p {
        font-size: 14px;
    }
}
