/* Content Pages (Privacy, Terms, etc.) */
.content-section {
    background-color: white;
    padding: 2rem;
    border-radius: 0;
    margin-bottom: 2rem;
    overflow-x: hidden;
}

.content-section h1 {
    margin-bottom: 1.5rem;
    color: black;
}

.content-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: black;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.content-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 2rem;
}

/* 404 Error Page */
.error-container {
    text-align: center;
    padding: 5rem 2rem;
}

.error-container h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    color: black;
}

.error-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: black;
}

.error-container p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (width <= 768px) {
    .content-section {
        padding: 1.5rem;
    }
} 