body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f7fa;
}

.container {
    background: #fff;
    max-width: 800px;
    margin: 32px auto;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(40,60,80,0.07);
    padding: 32px 28px 24px 28px;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.logo {
    width: 128px;
    height: auto;
}

h1 {
    color: #2d3e50;
    font-size: 2rem;
    margin: 0;
}

hr {
    border: none;
    border-top: 1px solid #e2e6ea;
    margin: 4px 0;
}

a {
    color: #4478be;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.privacy-content {
    line-height: 1.6;
    padding: 4px 0;
    color: #333;
}

.privacy-header {
    margin: 20px 0 30px;
    background: #f0f4f8;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #4478be;
}

.privacy-header h1 {
    color: #2d3e50;
    font-size: 1.8rem;
    margin: 0;
}

.privacy-header .effective-date {
    color: #666;
    margin-top: 15px;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e6ea;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.privacy-header p {
    margin: 0;
    line-height: 1.6;
}

.section {
    margin: 40px 0;
    padding: 0 15px;
}

.section h2 {
    font-weight: 600;
    margin: 0 0 20px;
    color: #4478be;
    font-size: 1.2rem;
    border-bottom: 2px solid #e2e6ea;
    padding-bottom: 12px;
}

.section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.section li {
    margin-bottom: 8px;
}

.section strong {
    color: #2d3e50;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #4478be;
}