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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f5f7fa;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.content {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eaed;
}

.back-link {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #2563eb;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

h1 {
    color: #1a202c;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.policy-content {
    color: #374151;
    line-height: 1.8;
    text-align: left;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #4b5563;
}

ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    color: #4b5563;
}

a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }

    .logo-container {
        width: 90px;
        height: 90px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .content {
        padding: 30px 20px;
    }

    .logo-container {
        width: 80px;
        height: 80px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
    }
}

