:root {
    --primary-color: #2563eb;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #f3f4f6;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    background-color: var(--header-bg);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

/* Content Styles */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.policy-section {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.policy-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.policy-section p {
    margin-bottom: 1rem;
    color: #374151;
}

.policy-section ul {
    list-style-type: none;
    margin-bottom: 1rem;
    padding-left: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.policy-section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}


.contact-email {
    color: var(--primary-color);
    font-weight: 600;
}

/* Logo Styles */
.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .header h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1.5rem;
    }
}