.content-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: auto;
    flex-grow: 1;
    max-height: 100vh; /* Limits height to viewport */
    overflow-y: auto; /* Allows scrolling for content overflow */
    width: 100%;
    padding: 20px 0;
}

#privacy-content-container {
    font-size: 1rem;
    max-width: 800px; /* Restrict width for better readability */
    width: 100%;
    text-align: left;
    padding: 0 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    color: #666;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.4rem;
    margin: 15px 0 10px;
    color: #444;
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

strong {
    font-weight: bold;
}

a {
    color: #5ca0d3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Media query for mobile portrait and landscape */
@media (max-width: 1000px) {
    #main {
        width: 300px;
    }
    #privacy-content-container {
        width: 300px;
    }
}

@media (max-width: 1000px) and (orientation: landscape) {
    #main {
        width: 100%;
    }
    #privacy-content-container {
        width: 600px;
    }
    .content-container {
        justify-content: normal;
    }
}
