

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

        .terms-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid #f39c12;
        }

        .terms-header h1 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .last-updated {
            color: #7f8c8d;
            font-size: 14px;
        }

        .terms-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .intro-text {
            background: #fff5e6;
            padding: 20px;
            border-left: 4px solid #f39c12;
            margin-bottom: 30px;
            border-radius: 5px;
        }

        .intro-text p {
            margin: 0;
            color: #555;
        }

        .section {
            margin-bottom: 35px;
        }

        .section-number {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: #f39c12;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            font-weight: bold;
            margin-right: 15px;
            font-size: 18px;
        }

        .section-title {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .section-content {
            padding-left: 50px;
            color: #555;
        }

        .section-content ul {
            list-style: none;
            padding-left: 0;
        }

        .section-content li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .section-content li:before {
            content: "•";
            color: #f39c12;
            font-weight: bold;
            font-size: 20px;
            position: absolute;
            left: 0;
        }

        .highlight-box {
            background: #e8f5e9;
            border-left: 4px solid #27ae60;
            padding: 15px;
            margin: 15px 0;
            border-radius: 5px;
        }

        .warning-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 15px 0;
            border-radius: 5px;
        }

        .contact-section {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
            text-align: center;
        }

        .contact-section h3 {
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .contact-section p {
            color: #555;
            margin-bottom: 10px;
        }

        .contact-link {
            color: #f39c12;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-link:hover {
            text-decoration: underline;
        }

        .acceptance-box {
            background: #e3f2fd;
            border: 2px solid #2196f3;
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            text-align: center;
        }

        .acceptance-box p {
            margin: 0;
            color: #1565c0;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .container-terms {
                padding: 20px 15px;
            }

            .terms-header h1 {
                font-size: 28px;
            }

            .terms-content {
                padding: 25px 20px;
            }

            .section-title {
                font-size: 19px;
                flex-wrap: wrap;
            }

            .section-content {
                padding-left: 0;
                margin-top: 10px;
            }

            .section-number {
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .terms-header h1 {
                font-size: 24px;
            }

            .terms-content {
                padding: 20px 15px;
            }

            .section-title {
                font-size: 17px;
            }

            .intro-text {
                padding: 15px;
            }

            .highlight-box,
            .warning-box {
                padding: 12px;
            }

            .contact-section {
                padding: 20px 15px;
            }
        }