        :root {
            --primary-color: #0d3f52;
            --secondary-color: #031b27;
            --accent-color: #7bb2c1;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            color: var(--text-color);
            background-color: #fff;
            line-height: 1.8;
            direction: rtl;
            text-align: right;
        }
        
        .terms-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .terms-header h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .terms-header .effective-date {
            color: #666;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .terms-intro {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 40px;
            border-right: 5px solid var(--accent-color);
            box-shadow: var(--box-shadow);
        }
        
        .terms-section {
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .terms-section:hover {
            transform: translateY(-5px);
        }
        
        .section-header {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .section-header h2 {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .section-header .section-number {
            background-color: var(--accent-color);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            font-weight: bold;
        }
        
        .section-content {
            padding: 25px;
        }
        
        .section-content ul {
            padding-right: 20px;
        }
        
        .section-content li {
            margin-bottom: 10px;
            position: relative;
            padding-right: 20px;
        }
        
        .section-content li:before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            right: 0;
        }
        
        .highlight-box {
            background-color: rgba(26, 140, 255, 0.1);
            border-right: 3px solid var(--accent-color);
            padding: 15px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 20px 0;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            background-color: var(--light-bg);
            padding: 10px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .contact-item i {
            margin-left: 8px;
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .terms-header h1 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.2rem;
            }
            
            .section-content {
                padding: 15px;
            }
        }
