﻿.terms-container {
            padding: 20px 16px 100px;
            max-width: 640px;
            margin: 0 auto;
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .terms-header h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 8px 0;
        }
        
        .terms-header p {
            font-size: 14px;
            color: var(--text-sub);
            margin: 0;
        }
        
        .terms-section {
            background: white;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        
        .terms-section h2 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 14px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .terms-section h2 .section-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            font-size: 13px;
            font-weight: 700;
        }
        
        .terms-section p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-main);
            margin: 0 0 12px 0;
        }
        
        .terms-section p:last-child {
            margin-bottom: 0;
        }
        
        .terms-section ol, .terms-section ul {
            margin: 12px 0;
            padding-left: 24px;
        }
        
        .terms-section li {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        
        .terms-section li:last-child {
            margin-bottom: 0;
        }
        
        .terms-info-box {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            color: white;
            margin-top: 24px;
        }
        
        .terms-info-box p {
            margin: 6px 0;
            font-size: 14px;
            opacity: 0.9;
        }
        
        .terms-info-box p strong {
            opacity: 1;
        }
        
        .terms-info-box .effective-date {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .back-button {
            position: fixed;
            top: 16px;
            left: 16px;
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
            cursor: pointer;
            z-index: 100;
        }
        
.back-button:active {
    transform: scale(0.95);
}
