  .terms-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

       
        .terms-sidebar {
            width: 250px;
            position: sticky;
            top: 40px;
            height: fit-content;
            padding-right: 30px;
            border-right: 1px solid #dadce0;
        }

        .sidebar-title {
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            color: #70757a;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .terms-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .terms-sidebar li a {
            display: block;
            padding: 10px 12px;
            color: #4d5156;
            text-decoration: none;
            font-size: 14px;
            border-radius: 0 16px 16px 0;
            margin-left: -12px;
            transition: background 0.2s, color 0.2s;
        }

       
        .terms-sidebar li a:hover {
            background-color: #f1f3f4;
            color: #202124;
        }

        .terms-sidebar li.active a {
            background-color: #e8f0fe;
            color: #1a73e8;
            font-weight: 500;
        }

        
        .terms-content {
            flex: 1;
            padding-left: 60px;
           /// max-width: 730px;
            text-align: justify;
        }

        h1 {
            font-size: 32px;
            font-weight: 400;
            margin-top: 0;
            margin-bottom: 8px;
            color: #202124;
        }

        
        .update-date {
            background-color: #f8f9fa;
            border: 1px solid #dadce0;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 14px;
            color: #5f6368;
            margin-bottom: 32px;
        }

        section {
            margin-bottom: 40px;
            scroll-margin-top: 40px; 
        }

        h2 {
            font-size: 22px;
            font-weight: 400;
            color: #202124;
            margin-bottom: 16px;
        }

        p {
            font-size: 15px;
            color: #3c4043;
            margin-bottom: 16px;
        }

        
        .highlight-box {
            border-left: 4px solid #1a73e8;
            background-color: #f8f9fa;
            padding: 16px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

       
        @media (max-width: 800px) {
            .terms-container {
                flex-direction: column;
            }
            .terms-sidebar {
                width: 100%;
                position: relative;
                top: 0;
                border-right: none;
                border-bottom: 1px solid #dadce0;
                padding-right: 0;
                padding-bottom: 20px;
                margin-bottom: 30px;
            }
            .terms-sidebar li a {
                border-radius: 8px;
                margin-left: 0;
            }
            .terms-content {
                padding-left: 0;
            }
        }