

        .main-content {
            margin-top: 70px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 4rem 2rem;
        }

        .terms-header {
            border-bottom: 1px solid #000000;
            padding-bottom: 2rem;
            margin-bottom: 3rem;
        }

        .terms-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            color: #000000;
        }

        .last-updated {
            color: #666666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 300;
        }

        .terms-content {
            background: #ffffff;
        }

        .section {
            margin-bottom: 3rem;
            border: 1px solid #000000;
            padding: 2.5rem;
            transition: all 0.2s ease;
        }

        .section:hover {
            box-shadow: 0 0 0 2px #000000;
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 400;
            color: #000000;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 0.5rem;
        }

        .section-content {
            font-size: 1rem;
            line-height: 1.7;
            color: #333333;
        }

        .section-content p {
            margin-bottom: 1rem;
        }

        .section-content p:last-child {
            margin-bottom: 0;
        }

        .subsection {
            margin-bottom: 1.5rem;
        }

        .subsection-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #000000;
            margin-bottom: 0.75rem;
            font-style: italic;
        }

        .prohibited-list {
            background: #f8f8f8;
            border: 1px solid #e0e0e0;
            padding: 1.5rem;
            margin: 1rem 0;
        }

        .prohibited-list ul {
            list-style: none;
            padding-left: 0;
        }

        .prohibited-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e0e0e0;
            position: relative;
            padding-left: 1.5rem;
        }

        .prohibited-list li:before {
            content: "—";
            position: absolute;
            left: 0;
            color: #666666;
            font-weight: bold;
        }

        .prohibited-list li:last-child {
            border-bottom: none;
        }

        .contact-section {
            background: #f5f5f5;
            border: 1px solid #000000;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }

        .contact-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #000000;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-info {
            font-size: 0.9rem;
            color: #666666;
            line-height: 1.8;
        }

        .contact-info a {
            color: #000000;
            text-decoration: none;
            border-bottom: 1px solid #000000;
            transition: all 0.2s ease;
        }

        .contact-info a:hover {
            background: #000000;
            color: #ffffff;
        }

        .highlight-box {
            background: #f0f0f0;
            border-left: 4px solid #000000;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .highlight-box p {
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .highlight-box p:last-child {
            margin-bottom: 0;
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #000000;
            color: #ffffff;
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s ease;
        }

        .back-to-top:hover {
            background: #333333;
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 2rem 1rem;
            }

            .terms-title {
                font-size: 2rem;
            }

            .section {
                padding: 1.5rem;
            }
        }