/* CSS Document */
.terms-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
            font-family: Roboto, sans-serif;
            line-height: 1.6;
            color: #6b6b77;
        }
        
        .terms-header {
            text-align: center;
            background: #f4fcff;
            color: black;
            padding: 30px 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .terms-header h1 {
            margin: 0;
            font-size: 2.2em;
            font-weight: bold;
        }
        
        .terms-header .company-info {
            margin-top: 15px;
            font-size: 1.1em;
            opacity: 0.9;
        }
        
        .article {
            background: #fff;
            border: 1px solid #d3f4ff;
            border-radius: 8px;
            margin-bottom: 20px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .article-title {
            background: #f4fcff;
            color: #495057;
            font-size: 1.3em;
            font-weight: bold;
            padding: 15px;
            margin: -25px -25px 20px -25px;
            border-radius: 8px 8px 0 0;
            border-bottom: 2px solid #d3f4ff;
        }
        
        .article-content {
            counter-reset: paragraph-counter;
        }
        
        .paragraph {
            margin-bottom: 15px;
            counter-increment: paragraph-counter;
            position: relative;
            padding-left: 30px;
        }
        
        .paragraph::before {
            content: counter(paragraph-counter) ".";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: bold;
            color: #00b1eb;
        }
        
        .highlight-box {
            background: #d3f4ff;
            border-left: 4px solid #00b1eb;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .important-notice {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 5px;
            padding: 15px;
            margin: 20px 0;
        }
        
        .contact-info {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
            text-align: center;
        }
        
        .website-link {
            color: #667eea;
            text-decoration: none;
            font-weight: bold;
        }
        
        .website-link:hover {
            text-decoration: underline;
        }
        
        .legal-text {
            font-size: 0.95em;
            color: #666;
        }
        
        @media (max-width: 768px) {
            .terms-container {
                padding: 10px;
            }
            
            .terms-header h1 {
                font-size: 1.8em;
            }
            
            .article {
                padding: 20px;
            }
            
            .article-title {
                margin: -20px -20px 15px -20px;
                font-size: 1.2em;
            }
        }