        :root {
            --color-white: #ffffff;
            --color-light: #f9f7f7;
            --color-rose: #f8d7da;
            --color-coral: #f08080;
            --color-muted-green: #d8e2dc;
            --color-vivid-coral: #ff7e6f;
            --color-accent: #fec89a;
            --text-dark: #5a5a5a;
            --text-muted: #8a8a8a;
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
            --gradient-primary: linear-gradient(135deg, var(--color-vivid-coral), #ff6b5b);
            --gradient-secondary: linear-gradient(135deg, var(--color-accent), var(--color-coral));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Almarai', sans-serif;
        }

        html,
        body {
            width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--color-light);
            color: var(--text-dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .top-nav {
            background-color: var(--color-white);
            box-shadow: var(--shadow-sm);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            height: 60px;
            max-width: 100%;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--color-vivid-coral);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-vivid-coral);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            position: relative;
        }

        .nav-icons a {
            color: var(--text-dark);
            font-size: 1.3rem;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--color-vivid-coral);
        }

        .profile-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--color-white);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            padding: 1rem 0;
            min-width: 200px;
            z-index: 1000;
            display: none;
            margin-top: 10px;
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 1.1rem;
            transition: var(--transition);
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background-color: var(--color-light);
            color: var(--color-vivid-coral);
        }

        .dropdown-menu a i {
            width: 20px;
            text-align: center;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background-color: var(--color-white);
            box-shadow: var(--shadow-lg);
            z-index: 2000;
            transition: var(--transition);
            padding: 1rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            margin-bottom: 1rem;
        }

        .close-menu-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .mobile-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 700;
            font-size: 1.2rem;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-links a:hover {
            background-color: var(--color-light);
            color: var(--color-vivid-coral);
        }

        .mobile-profile-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
            border-top: 1px solid #eee;
            padding-top: 1.5rem;
        }

        .mobile-profile-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }

        .terms-header {
            background: var(--gradient-primary);
            padding: 6rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .terms-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://files.catbox.moe/9gs095.png') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .header-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .header-content p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .terms-navigation {
            background: var(--color-white);
            padding: 2rem 0;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 100px;
            z-index: 500;
        }

        .nav-tabs {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            padding: 0 2rem;
        }

        .tab-btn {
            background: var(--color-light);
            color: var(--text-dark);
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            white-space: nowrap;
            font-size: 1rem;
        }

        .tab-btn:hover,
        .tab-btn.active {
            background: var(--gradient-primary);
            color: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 126, 111, 0.3);
        }

        .tab-btn i {
            font-size: 1.1rem;
        }

        .terms-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease-in;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-section {
            background: var(--color-white);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--color-light);
        }

        .section-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--color-white);
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-dark);
        }

        .content-text {
            line-height: 1.8;
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

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

        .content-list li {
            background: var(--color-light);
            margin: 1rem 0;
            padding: 1.5rem;
            border-radius: 15px;
            border-right: 4px solid var(--color-vivid-coral);
            position: relative;
            transition: var(--transition);
        }

        .content-list li:hover {
            transform: translateX(-5px);
            box-shadow: var(--shadow-md);
        }

        .content-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--color-vivid-coral);
            color: var(--color-white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .content-list li strong {
            color: var(--color-vivid-coral);
            font-weight: 800;
        }

        .faq-item {
            background: var(--color-white);
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            background: var(--color-light);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            border: none;
            width: 100%;
            text-align: right;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .faq-question:hover {
            background: var(--color-muted-green);
        }

        .faq-question.active {
            background: var(--gradient-primary);
            color: var(--color-white);
        }

        .faq-icon {
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: var(--color-white);
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }

        .faq-answer p {
            line-height: 1.7;
            color: var(--text-dark);
        }

        .contact-box {
            background: var(--gradient-secondary);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }

        .contact-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .contact-box h3 {
            font-size: 2rem;
            color: var(--color-white);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .contact-box p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--color-white);
            color: var(--color-vivid-coral);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .info-card {
            background: var(--color-light);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .info-card-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--color-white);
            margin: 0 auto 1.5rem;
        }

        .info-card h4 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .info-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        footer {
            background-color: #233341;
            color: var(--color-white);
            padding: 4rem 2rem 2rem;
            width: 100%;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }

        .footer-logo {
            width: 200px;
            max-width: 100%;
            margin-bottom: 1.5rem;
        }

        .footer-slogan {
            font-size: 1.3rem;
            text-align: center;
            color: #d8e2dc;
            margin-bottom: 2rem;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #3a506b;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            color: var(--color-white);
            transition: var(--transition);
        }

        .footer-social a:hover {
            background-color: var(--color-vivid-coral);
            transform: translateY(-5px);
        }

        .footer-divider {
            height: 2px;
            background-color: #3a506b;
            width: 70%;
            border-radius: 1px;
        }

        .footer-copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            text-align: center;
            color: #8a8a8a;
            font-size: 1.1rem;
        }

        .footer-copyright a {
            color: var(--color-vivid-coral);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-copyright a:hover {
            color: var(--color-white);
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-icons a:not(.mobile-menu-btn) {
                display: none;
            }

            .terms-header {
                padding: 4rem 1rem 3rem;
            }

            .header-content h1 {
                font-size: 2.8rem;
            }

            .nav-tabs {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }

            .tab-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .content-section {
                padding: 2rem;
            }

            .section-header {
                flex-direction: column;
                text-align: center;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .terms-header {
                padding: 3rem 1rem 2rem;
            }

            .header-content h1 {
                font-size: 2.2rem;
            }

            .header-content p {
                font-size: 1.1rem;
            }

            .content-section {
                padding: 1.5rem;
            }

            .section-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .contact-box {
                padding: 2rem;
            }

            .contact-box h3 {
                font-size: 1.6rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .terms-navigation {
                top: 80px;
            }

            .nav-tabs {
                padding: 0 1rem;
            }

            .tab-btn {
                font-size: 0.9rem;
                padding: 0.8rem 1.5rem;
            }

            .content-section {
                padding: 1rem;
            }

            .content-list li {
                padding: 1rem;
            }

            .faq-question {
                padding: 1rem;
                font-size: 1rem;
            }

            .faq-answer.active {
                padding: 1rem;
            }

            .info-card {
                padding: 1.5rem;
            }

            .info-card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }
