﻿        /* Hero Section */
        .terms-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #312e81 100%);
            color: white;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }
        
        .terms-hero::before {
            content: '';
            position: absolute;
            top: 25%;
            left: 25%;
            width: 256px;
            height: 256px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            filter: blur(100px);
        }
        
        .terms-hero::after {
            content: '';
            position: absolute;
            bottom: 25%;
            right: 25%;
            width: 384px;
            height: 384px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 50%;
            filter: blur(100px);
        }
        
        .hero-content {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #bfdbfe, #a5f3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-divider {
            height: 4px;
            width: 96px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            margin: 0 auto 30px;
            border-radius: 2px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: #bfdbfe;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .hero-meta {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .meta-items {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .meta-item i {
            font-size: 1.25rem;
        }
        
        .meta-item.green i {
            color: #86efac;
        }
        
        .meta-item.blue i {
            color: #93c5fd;
        }
        
        /* Content Section */
        .content-section {
            padding: 80px 20px;
            background: linear-gradient(to bottom, #fff, #f8fafc);
        }
        
        .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .content-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            padding: 50px;
        }
        
        .intro-box {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 50px;
        }
        
        .intro-box p {
            color: #475569;
            line-height: 1.8;
            margin: 0;
        }
        
        /* Section Styles */
        .terms-section {
            margin-bottom: 50px;
        }
        
        .section-header {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .subsection {
            margin-bottom: 30px;
        }
        
        .subsection-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 15px;
        }
        
        .terms-section p {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin: 10px 0 15px 0;
            padding-left: 25px;
        }
        
        .terms-section li {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 10px;
        }
        
        .bullet-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .bullet-dot {
            width: 8px;
            height: 8px;
            background: #3b82f6;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }
        
        .bullet-content {
            flex: 1;
            color: #475569;
            line-height: 1.8;
        }
        
        /* Contact Box */
        .contact-box {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 16px;
            padding: 35px;
        }
        
        .contact-box p {
            color: #475569;
            margin-bottom: 25px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        
        .contact-item {
            display: flex;
            gap: 15px;
        }
        
        .contact-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        .contact-icon.blue {
            color: #2563eb;
        }
        
        .contact-icon.green {
            color: #16a34a;
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-label {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 5px;
        }
        
        .contact-value {
            color: #475569;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-value.blue {
            color: #2563eb;
        }
        
        .contact-value.green {
            color: #16a34a;
        }
        
        .contact-value:hover {
            opacity: 0.8;
        }
        
        .contact-note {
            font-size: 0.875rem;
            color: #64748b;
            margin-top: 3px;
        }
        
        /* Final Notice Box */
        .notice-box {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 16px;
            padding: 25px;
            text-align: center;
        }
        
        .notice-box p {
            color: #475569;
            margin: 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
            }
            
            .content-card {
                padding: 30px 20px;
            }
            
            .section-header {
                font-size: 1.25rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .meta-items {
                flex-direction: column;
                gap: 15px;
            }
        }
