/* Terms of Usage Container */
.terms-of-usage-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--library-container-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--text-secondary-color);
}

/* Main Heading */
.terms-of-usage-container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

/* Paragraph Text */
.terms-of-usage-container p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Section Headings */
.terms-of-usage-container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}