.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.privacy-content p {
    margin-bottom: 15px;
    color: #4b5563;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-content a:hover {
    text-decoration: none;
}

.back-button-container {
    text-align: center;
    margin-top: 2rem;
}

.back-button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: var(--primary-dark);
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.footer-links {
    font-size: 14px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.terms-list {
    margin-left: 20px;
    padding-left: 20px;
}

.terms-list li {
    margin: 10px 0;
    line-height: 1.5;
}

.important-text {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--primary);
    margin: 15px 0;
}

.subtitle {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.header h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.header-line {
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section h3 {
    text-align: center;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.date {
    text-align: center;
    color: #666;
    margin: 1rem 0;
}

.disclaimer {
    text-align: center;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
} 