.terms-container {
        display: flex;
        max-width: 1200px;
        margin: 20px auto;
        gap: 30px;
        padding: 20px;
    }

    .table-of-contents {
        position: sticky;
        top: 80px;
        width: 250px;
        height: fit-content;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 20px;
        display: none;
    }

    .table-of-contents h3 {
        margin: 0 0 15px 0;
        font-size: 1.1em;
        color: #333;
        font-family: "Poppins";
        border-bottom: 2px solid #007BFF;
        padding-bottom: 8px;
    }

    .table-of-contents ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .table-of-contents li {
        margin-bottom: 8px;
    }

    .table-of-contents a {
        color: #666;
        text-decoration: none;
        font-size: 0.9em;
        line-height: 1.4;
        display: block;
        padding: 5px 8px;
        border-radius: 4px;
        transition: all 0.2s ease;
        font-family: "Poppins";
    }

    .table-of-contents a:hover {
        background: #007BFF;
        color: white;
        text-decoration: none;
    }

    .table-of-contents a.active {
        background: #007BFF;
        color: white;
        font-weight: 500;
    }

    main {
        flex: 1;
        min-width: 0;
        font-family: "Poppins";
        line-height: 1.6;
    }

    h1 {
        font-size: 2em;
        color: #333;
        margin-bottom: 20px;
        text-align: center;
        font-family: "Poppins";
    }

    h2 {
        font-size: 1.5em;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        font-family: "Poppins";
        scroll-margin-top: 100px;
    }

    h3 {
        font-size: 1.2em;
        color: #333;
        margin-top: 20px;
        margin-bottom: 10px;
        font-family: "Poppins";
    }

    p {
        font-size: 1em;
        color: #666;
        margin-bottom: 15px;
        font-family: "Poppins";
    }

    ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 20px;
        font-family: "Poppins";
    }

    li {
        font-size: 1em;
        color: #666;
        margin-bottom: 10px;
        font-family: "Poppins";
    }

    a {
        color: #007BFF;
        text-decoration: none;
        font-family: "Poppins";
    }

    a:hover {
        text-decoration: underline;
    }

    strong {
        color: #333;
        font-family: "Poppins";
    }

    @media (min-width: 1024px) {
        .table-of-contents {
            display: block;
        }
    }

    @media (max-width: 1023px) {
        .terms-container {
            flex-direction: column;
            padding: 10px;
        }

        main {
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .terms-container {
            padding: 10px;
        }

        h1 {
            font-size: 1.5em;
        }

        h2 {
            font-size: 1.2em;
        }

        h3 {
            font-size: 1.1em;
        }

        p, li {
            font-size: 0.9em;
        }
    }