        /* --- 1. GLOBAL STYLES & LAYOUT --- */
        :root {
            --primary-purple: #6825DB;
            --primary-lime: #Cdfb3f;
            --accent-orange: #FCA440;
            --dark-bg: #12072b;
            --brand-purple: #6825DB;
            --brand-orange: #FCA440;
            --bg-dark-purple: #12072b;
            --border-glass: rgba(255, 255, 255, 0.1);
            --text-muted: rgba(255, 255, 255, 0.72);
            --glass-card: rgba(255, 255, 255, 0.08);
            --transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            --transition-fast: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        html, body {
            width: 100%; height: auto;
            overflow-y: auto;
            background-color: var(--dark-bg);
            background-image: radial-gradient(circle at 50% 5%, #2a1161 0%, var(--dark-bg) 70%);
            color: #ffffff;
            position: static;
        }

        #fullpage-wrapper {
            width: 100vw; height: auto;
            transform: none !important;
            transition: none;
            will-change: auto;
        }

        .fp-section {
            height: auto; min-height: 100vh; width: 100vw;
            display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
            position: relative; padding: 100px 5% 60px; overflow: visible;
        }

        .section-container { width: 100%; max-width: 1300px; margin: 0 auto; position: relative; z-index: 10; }

        /* Yatay Kaydırma İçin Ortak Sınıf (Mobil İçin) */
        .swipe-wrapper {
            display: flex;
            gap: 20px;
            width: 100%;
            -ms-overflow-style: none; 
            scrollbar-width: none;
        }
        .swipe-wrapper::-webkit-scrollbar { display: none; }

        /* --- 2. HEADER DESIGN (DİNAMİK) --- */
        .thegem-header {
            position: fixed; width: 100%; top: 0; left: 0; z-index: 1000;
            padding: 25px 5%; transition: var(--transition-slow); background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .thegem-header-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
        .thegem-header.scrolled { background: #ffffff !important; padding: 15px 5%; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border-bottom: none; }
        .thegem-header.scrolled-dark { background: var(--dark-bg) !important; padding: 15px 5%; box-shadow: 0 10px 40px rgba(0,0,0,0.25); border-bottom: none; }

        .custom-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .custom-logo-icon { height: 40px; width: auto; object-fit: contain; display: block; }
        .custom-logo-text { font-size: 1.9rem; font-weight: 900; color: #ffffff; transition: var(--transition-fast); }
        .custom-logo-text span { color: var(--primary-lime); }

        .pill-nav-container { display: flex; gap: 12px; }
        .pill-nav-link { color: #ffffff; text-decoration: none; padding: 10px 22px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: var(--transition-fast); }
        .pill-nav-link:hover, .pill-nav-link.active { background: rgba(255, 255, 255, 0.15); }

        .header-actions { display: flex; gap: 10px; align-items: center; }
        .portal-pill-btn { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; border: 2px solid #ffffff; color: #ffffff; text-decoration: none; transition: var(--transition-fast); }
        .portal-pill-btn:hover { background: #ffffff; color: var(--dark-bg); }
        .pill-outline-btn { border: 2px solid #ffffff; color: #ffffff; padding: 10px 26px; border-radius: 30px; font-weight: 700; text-decoration: none; transition: var(--transition-fast); }
        .pill-outline-btn:hover { background: #ffffff; color: var(--dark-bg); }

        .thegem-mobile-menu-btn { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

        .thegem-header.scrolled .custom-logo-text { color: #111; }
        .thegem-header.scrolled .custom-logo-text span { color: var(--primary-purple); }
        .thegem-header.scrolled .pill-nav-link { color: #444; }
        .thegem-header.scrolled .pill-nav-link:hover, .thegem-header.scrolled .pill-nav-link.active { background: #f5f5f5; color: var(--primary-purple); }
        .thegem-header.scrolled .pill-outline-btn, .thegem-header.scrolled .portal-pill-btn { border-color: var(--primary-purple); color: var(--primary-purple); }
        .thegem-header.scrolled .pill-outline-btn:hover, .thegem-header.scrolled .portal-pill-btn:hover { background: var(--primary-purple); color: #fff; }
        .thegem-header.scrolled .thegem-mobile-menu-btn { color: #111; }

        .thegem-nav-item-has-dropdown { position: relative; cursor: pointer; display: flex; align-items: center; height: 90px; }
        .thegem-nav-item-has-dropdown > a { pointer-events: auto; position: relative; z-index: 2; cursor: pointer; }
        .thegem-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: rgba(25, 10, 45, 0.95); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1050; padding: 20px; cursor: default; }
        .thegem-nav-item-has-dropdown:hover .thegem-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
        .dropdown-header { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 5px; font-size: 0.65rem; font-weight: 800; color: var(--accent-orange); text-transform: uppercase; letter-spacing: 1px; grid-column: 1 / -1; }
        .dropdown-link { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.78); text-decoration: none; padding: 8px; border-radius: 8px; transition: all 0.2s ease; }
        .dropdown-link:hover { background-color: rgba(255,255,255,0.1); color: #ffffff; }
        .grid-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .grid-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
        .dropdown-link img { width: 20px; height: 14px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
                .exam-icon-box {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .exam-icon-box img {
            width: 36px !important;
            height: 36px !important;
            max-width: none !important;
            object-fit: contain;
            border-radius: 0 !important;
        }

        .dropdown-link:has(.exam-icon-box) {
            font-size: 1.05rem;
            font-weight: 800;
            color: #ffffff;
            gap: 14px;
        }

        /* --- MOBİL MENÜ --- */
        .mobile-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.4s; }
        .mobile-backdrop.active { opacity: 1; visibility: visible; }
        .mobile-menu-overlay { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: var(--bg-dark-purple); border-left: 1px solid var(--border-glass); z-index: 2000; display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); overflow-y: auto; box-shadow: -10px 0 30px rgba(0,0,0,0.28); }
        .mobile-menu-overlay.active { right: 0; }
        .mob-header { display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; border-bottom: 1px solid var(--border-glass); }
        .close-mob-menu { font-size: 1.5rem; color: #fff; cursor: pointer; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
        .close-mob-menu:hover { background: #ef4444; color: #fff; }
        .mob-menu-body { padding: 16px 26px; flex: 1; }
        .mob-nav-item { display: flex; justify-content: space-between; align-items: center; font-size: 1.2rem; font-weight: 700; color: #fff; padding: 18px 0; border-bottom: 1px solid var(--border-glass); text-decoration: none; cursor: pointer; transition: 0.3s; }
        .mob-nav-item:hover, .mob-nav-item.active { color: var(--accent-orange); }
        .mob-nav-item-with-toggle { align-items: center; gap: 12px; }
        .mob-nav-link { color: inherit; text-decoration: none; }
        .mob-nav-link-main { flex: 1; }
        .mob-nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: none; background: rgba(255,255,255,0.08); color: #fff; border-radius: 50%; cursor: pointer; transition: 0.25s; }
        .mob-nav-toggle:hover { background: rgba(255,255,255,0.16); }
        .mob-sub-menu { display: none; flex-direction: column; background: rgba(0,0,0,0.3); border-radius: 12px; margin-top: 5px; padding: 10px 0; }
        .mob-sub-menu.active { display: flex; }
        .mob-sub-menu a { padding: 12px 20px; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.72); text-decoration: none; transition: 0.2s; display: flex; align-items: center; gap: 10px; }
        .mob-sub-menu a:hover { color: #fff; }
        .mob-sub-menu a img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
        .mob-nav-item.open .fa-chevron-down { transform: rotate(180deg); }
        .mob-menu-footer { padding: 30px; border-top: 1px solid var(--border-glass); }
        .mob-primary-btn { display: block; width: 100%; text-align: center; background: var(--brand-purple); color: #fff; padding: 16px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: 0.3s; }

        /* --- 3. ANIMATIONS (REVEAL) --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.15s; }
        .delay-2 { transition-delay: 0.3s; }
        .delay-3 { transition-delay: 0.45s; }

        /* Ortak Başlık Stilleri */
        .section-title { font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 900; margin-bottom: 20px; line-height: 1.1;}
        .text-gradient { background: linear-gradient(90deg, var(--accent-orange), var(--primary-lime)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .text-orange { color: #FCA440; }
        .text-purple { color: #CAA7F0; }
        .text-lime { color: #CBD83B; }
        .text-white { color: #ffffff; }

        /* --- 4. BÖLÜM 1: HERO BANNER (KOYU & RESİMLİ) --- */
        .hero-section {
            background: linear-gradient(135deg, rgba(10, 7, 26, 0.72) 0%, rgba(43, 19, 79, 0.58) 100%),
                        url('https://upload.wikimedia.org/wikipedia/commons/8/8b/McGill_University%2C_Winter.jpg') center 38%/cover no-repeat;
            color: #fff; text-align: center;
        }
        .hero-title { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; padding-top: 60px;}
        .hero-title span { color: var(--accent-orange); }
        .hero-desc { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255, 255, 255, 0.9); line-height: 1.7; max-width: 800px; margin: 0 auto 40px; }
        
        .hero-stats-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .hero-stat-badge {
            display: flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(15px);
            padding: 15px 32px; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .hero-stat-badge i { color: var(--primary-lime); font-size: 1.3rem; }
        .hero-stat-info strong { font-size: 1.15rem; font-weight: 900; color: #fff; display: block; text-align: left; line-height: 1.2;}
        .hero-stat-info span { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.5px;}

        /* --- 5. BÖLÜM 2: GENEL BİLGİ & AVANTAJLAR (BEYAZ TEMA) --- */
        .info-section { background: #ffffff; }
        .info-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
        
        .info-content p { font-size: 1.15rem; color: #555; line-height: 1.75; margin-bottom: 20px; }
        .info-content .highlight-box { padding: 20px; background: #fdf4f6; border-left: 5px solid var(--primary-purple); border-radius: 12px; margin-top: 30px; font-weight: 600; color: #1e1e2c;}
        
        .adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .adv-grid .adv-card:nth-child(even) { transform: translateY(30px); }
        .adv-card { background: #f9fafc; padding: 30px 25px; border-radius: 20px; border: 1px solid #edf0f5; transition: 0.3s; }
        .adv-card:hover { background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.05); transform: translateY(-5px) !important; }
        .adv-card i { font-size: 2rem; color: var(--accent-orange); margin-bottom: 15px; }
        .adv-card h4 { font-size: 1.1rem; font-weight: 800; color: #1e1e2c; margin-bottom: 10px; }
        .adv-card p { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0;}

        /* --- 6. BÖLÜM 3: BA??VURU ??ARTLARI (KOYU TEMA, CAM KARTLAR) --- */
        .requirements-section { background: linear-gradient(135deg, #11091d 0%, #1e1136 100%); color: #fff; }
        .req-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 28px; }

        .req-card {
            flex: 0 0 calc(33.333% - 12px); max-width: calc(33.333% - 12px); min-height: 245px;
            background: var(--glass-card); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px; padding: 26px 22px; position: relative; overflow: hidden; transition: 0.3s;
            display: flex; flex-direction: column; justify-content: flex-end;
        }
        .req-card:hover { border-color: var(--primary-lime); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3);}
        .req-arrow { display: none; }

        .req-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
        .req-card-overlay { position: absolute; inset: 0; background: rgba(10, 6, 24, 0.55); z-index: 0; }

        .req-card-content { position: relative; z-index: 5; text-align: left;}
        .req-card-content h3 { font-size: 1.2rem; color: #7EC8F0; margin-bottom: 10px; font-weight: 800;}
        .req-card-content p { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.6; }

        /* --- 7. BÖLÜM 4: POPÜLER ÜLKELER (BEYAZ TEMA, GENİ??LEYEN KARTLAR) --- */
        .countries-section { background: #ffffff; min-height: auto; padding-bottom: 30px; }
        
        .accordion-gallery { display: flex; gap: 15px; height: 450px; width: 100%; margin-top: 40px; }
        .acc-panel {
            flex: 1; border-radius: 25px; overflow: hidden; position: relative;
            transition: flex 0.6s cubic-bezier(0.22, 1, 0.36, 1); cursor: pointer;
        }
        .acc-panel:hover { flex: 4; }
        .acc-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
        .acc-panel:hover img { transform: scale(1.05); }
        .acc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
        
        .acc-content { position: absolute; bottom: 0; left: 0; padding: 30px; width: 100%; color: #fff; opacity: 0; transform: translateY(20px); transition: 0.4s; transition-delay: 0.1s;}
        .acc-panel:hover .acc-content { opacity: 1; transform: translateY(0); }
        .acc-content h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; color: var(--primary-lime);}
        .acc-content ul { list-style: none; margin-bottom: 10px; font-weight: 600;}
        .acc-content ul li { margin-bottom: 5px; display: flex; align-items: center; gap: 8px;}
        .acc-content ul li i { font-size: 0.8rem; color: var(--accent-orange);}
        .acc-content p { font-size: 1.05rem; line-height: 1.55; color: rgba(255,255,255,0.9); }
        
        .acc-title-vertical {
            position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
            color: #fff; font-weight: 800; font-size: 1.2rem; transition: 0.3s; white-space: nowrap;
        }
        .acc-panel:hover .acc-title-vertical { opacity: 0; }

        /* --- 7B. GEREKLİ BELGELER (AYNA/HOVER-SWAP KART DÜZENİ) --- */
        .docs-mirror-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr); gap: 52px; align-items: center; }
        .docs-content { min-width: 0; }
        .docs-kicker { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
        .docs-kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-orange); }
        .mirror-item { display: none; }
        .mirror-item.mirror-default { display: block; }
        .mirror-item p { font-size: 1.08rem !important; }
        .docs-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .docs-mini-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 26px; transition: 0.3s; cursor: pointer; }
        .docs-mini-card:hover { transform: translateY(-4px); border-color: var(--accent-orange); }
        .docs-mini-card.highlight { background: var(--primary-purple); border-color: var(--primary-purple); }
        .docs-mini-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--accent-orange); font-size: 1.1rem; }
        .docs-mini-card.highlight .docs-mini-icon { background: rgba(255,255,255,0.18); color: #fff; }
        .docs-mini-card h4 { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 8px; }
        .docs-mini-card p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin: 0; }
        .docs-mini-card.highlight p { color: rgba(255,255,255,0.85); }

        .card-face-swap { display: none; }
        .docs-mini-card:hover .card-face-default { display: none; }
        .docs-mini-card:hover .card-face-swap { display: block; }

        .docs-mirror-grid:has(.card-1:hover) .mirror-default,
        .docs-mirror-grid:has(.card-2:hover) .mirror-default,
        .docs-mirror-grid:has(.card-3:hover) .mirror-default,
        .docs-mirror-grid:has(.card-4:hover) .mirror-default {
            display: none;
        }
        .docs-mirror-grid:has(.card-1:hover) .mirror-for-1 { display: block; }
        .docs-mirror-grid:has(.card-2:hover) .mirror-for-2 { display: block; }
        .docs-mirror-grid:has(.card-3:hover) .mirror-for-3 { display: block; }
        .docs-mirror-grid:has(.card-4:hover) .mirror-for-4 { display: block; }

        /* --- 8. BÖLÜM 5: BURS OLANAKLARI (KOYU TEMA) --- */
        .burs-section { background: linear-gradient(135deg, #190a2e 0%, #11091d 100%); color: #fff; text-align: left; }
        .burs-faq-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr); align-items: center; gap: 52px; }
        .burs-content, .burs-visuals { min-width: 0; }
        .burs-content { max-width: 580px; }
        .burs-kicker { display: block; font-size: 0.84rem; font-weight: 800; color: #FCA440; text-transform: uppercase; letter-spacing: 2.6px; margin-bottom: 14px; }
        .burs-title { font-size: clamp(2.3rem, 4vw, 3.25rem); font-weight: 900; color: #fff; line-height: 1.08; margin: 0 0 18px; letter-spacing: -1px; }
        .burs-title span { color: var(--primary-lime); }
        .burs-intro { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.7; margin: 0 0 28px; }
        .burs-accordion { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.1); }
        .burs-accordion .accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
        .burs-accordion .accordion-header { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 24px 0; cursor: pointer; background: transparent; transition: color 0.3s ease; }
        .burs-accordion .accordion-header h3 { margin: 0; font-size: 1.08rem; font-weight: 700; line-height: 1.45; color: rgba(255,255,255,0.96); transition: color 0.3s ease; }
        .burs-accordion .accordion-icon { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; flex-shrink: 0; transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
        .burs-accordion .accordion-item.active .accordion-header h3 { color: #FCA440; }
        .burs-accordion .accordion-item.active .accordion-icon { transform: rotate(45deg); background: rgba(252,164,64,0.14); border-color: rgba(252,164,64,0.4); color: #FCA440; }
        .burs-accordion .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
        .burs-accordion .accordion-body p { margin: 0; padding: 0 56px 22px 0; color: rgba(255,255,255,0.72); font-size: 1.08rem; line-height: 1.7; font-weight: 500; }
        .burs-visuals { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
        .burs-visual-bg { position: absolute; top: 50%; left: 50%; width: min(100%, 440px); aspect-ratio: 1 / 1; transform: translate(-50%, -50%); border-radius: 34px; background: linear-gradient(160deg, rgba(179,135,255,0.28), rgba(255,255,255,0.09)); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 28px 80px rgba(8, 5, 26, 0.36); }
        .burs-main-image { position: relative; z-index: 4; width: min(100%, 460px); aspect-ratio: 1 / 1; object-fit: cover; border-radius: 30px; box-shadow: 0 24px 70px rgba(0,0,0,0.36); }
        .burs-dots-pattern { position: absolute; width: 136px; height: 136px; background-image: radial-gradient(rgba(252,164,64,0.92) 16%, transparent 16%); background-size: 16px 16px; opacity: 0.8; z-index: 1; }
        .burs-dots-pattern.top-right { top: -10px; right: -12px; }
        .burs-dots-pattern.bottom-left { bottom: 26px; left: 6px; }
        .burs-arrows-decor { position: absolute; z-index: 5; display: flex; gap: 4px; color: #F9C775; font-size: 1.15rem; opacity: 0.88; }
        .burs-left-arrows { left: -28px; top: 60%; }
        .burs-right-arrows { right: -6px; bottom: 15%; }

        /* --- 9. BÖLÜM 6: VİZE SÜRECİ (BEYAZ TEMA) --- */
        .vize-section { background: #ffffff; text-align: center; }
        .vize-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; position: relative; }
        .vize-grid::before { content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; background: #e2e8f0; z-index: 0; }
        
        .tl-item { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; padding: 0 15px; }
        .tl-icon { width: 60px; height: 60px; background: var(--primary-purple); color: #fff; border-radius: 50%; border: 5px solid #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.3rem; margin-bottom: 15px; z-index: 2; box-shadow: 0 5px 15px rgba(104, 37, 219, 0.2);}
        .tl-item h4 { font-size: 1.1rem; font-weight: 800; color: #1e1e2c; margin-bottom: 10px; }
        .tl-item p { font-size: 1.05rem; color: #555; line-height: 1.6; margin:0; }

        /* --- 10. BÖLÜM 7: WAY2GO DANI??MANLIK (KOYU TEMA TAM EKRAN) --- */
        .smyrna-section { background: linear-gradient(135deg, #11091d 0%, #190a2e 100%); color: #fff; }
        /* Başlık boyutunu image_6f6bf7.png baz alınarak küçülttüm ve ekranı boğmaması için padding ayarladım */
        .smyrna-section .section-title { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.2; margin-bottom: 20px; text-align: center; }
        .smyrna-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 900px; margin: 0 auto 40px; text-align: center; }
        
        .smyrna-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;}
        .smyrna-card { 
            padding: 35px 25px; border-radius: 20px; background: rgba(255,255,255,0.03); 
            border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; 
            align-items: center; text-align: center; gap: 15px; transition: 0.3s; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .smyrna-card:hover { 
            border-color: var(--primary-lime); background: rgba(255,255,255,0.08); 
            transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        .smyrna-icon { color: var(--primary-purple); font-size: 2.2rem; }
        .smyrna-text { font-weight: 800; color: #fff; font-size: 1.1rem;}

        /* --- 11. EXAMP TEMA OVERRIDE + FOOTER/BÜLTEN --- */
        .lisans-page .thegem-header {
            height: 90px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border-bottom: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .lisans-page .thegem-header-container {
            width: 100%;
            max-width: 1400px;
            padding: 0 40px;
        }

        .lisans-page .thegem-header.scrolled,
        .lisans-page .thegem-header.scrolled-dark {
            height: 80px;
            background: rgba(18, 7, 43, 0.85) !important;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .lisans-page .custom-logo-link {
            gap: 10px;
        }

        .lisans-page .pill-nav-container {
            align-items: center;
            gap: 8px;
            margin: 0 auto;
        }

        .lisans-page .pill-nav-link {
            background-color: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #ffffff;
            border-radius: 50px;
        }

        .lisans-page .pill-nav-link:hover,
        .lisans-page .pill-nav-link.active {
            background: rgba(255, 255, 255, 0.25);
            color: #ffffff;
        }

        .lisans-page .header-actions {
            gap: 12px;
        }

        .lisans-page .portal-pill-btn {
            border: 1.5px solid rgba(255, 255, 255, 0.5);
        }

        .lisans-page .lang-toggle-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            background: transparent;
            padding: 0;
            cursor: pointer;
            transition: 0.3s;
        }

        .lisans-page .lang-toggle-btn .lang-flag-img {
            width: 26px;
            height: 18px;
            object-fit: cover;
            border-radius: 3px;
            flex-shrink: 0;
        }

        .lisans-page .lang-toggle-btn:hover {
            background: #ffffff;
            transform: translateY(-2px);
        }

        .lisans-page .pill-outline-btn {
            background-color: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            padding: 10px 25px;
            font-weight: 600;
        }

        .lisans-page .portal-pill-btn:hover {
            background: #ffffff;
            color: #111111;
            transform: translateY(-2px);
        }

        .lisans-page .pill-outline-btn:hover {
            background: #ffffff;
            color: #111111;
        }

        .lisans-page .thegem-header.scrolled .custom-logo-text,
        .lisans-page .thegem-header.scrolled .pill-nav-link,
        .lisans-page .thegem-header.scrolled .portal-pill-btn,
        .lisans-page .thegem-header.scrolled .pill-outline-btn,
        .lisans-page .thegem-header.scrolled-dark .custom-logo-text,
        .lisans-page .thegem-header.scrolled-dark .pill-nav-link,
        .lisans-page .thegem-header.scrolled-dark .portal-pill-btn,
        .lisans-page .thegem-header.scrolled-dark .pill-outline-btn,
        .lisans-page .thegem-header.scrolled .thegem-mobile-menu-btn,
        .lisans-page .thegem-header.scrolled-dark .thegem-mobile-menu-btn {
            color: #ffffff;
        }

        .lisans-page .thegem-header.scrolled .pill-nav-link,
        .lisans-page .thegem-header.scrolled-dark .pill-nav-link {
            background-color: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.18);
        }

        .lisans-page .thegem-header.scrolled .pill-nav-link:hover,
        .lisans-page .thegem-header.scrolled .pill-nav-link.active,
        .lisans-page .thegem-header.scrolled-dark .pill-nav-link:hover,
        .lisans-page .thegem-header.scrolled-dark .pill-nav-link.active {
            background: rgba(255, 255, 255, 0.25);
            color: #ffffff;
        }

        .lisans-page .thegem-header.scrolled .portal-pill-btn,
        .lisans-page .thegem-header.scrolled .pill-outline-btn,
        .lisans-page .thegem-header.scrolled-dark .portal-pill-btn,
        .lisans-page .thegem-header.scrolled-dark .pill-outline-btn {
            border-color: rgba(255, 255, 255, 0.5);
        }

        .lisans-page .mobile-menu-overlay {
            background: var(--dark-bg);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.28);
        }

        .lisans-page .mob-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lisans-page .close-mob-menu {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
        }

        .lisans-page .mob-nav-item {
            color: #ffffff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .lisans-page .mob-nav-item:hover,
        .lisans-page .mob-nav-item.active {
            color: var(--accent-orange);
        }

        .lisans-page .info-section,
        .lisans-page .requirements-section,
        .lisans-page .countries-section,
        .lisans-page .burs-section,
        .lisans-page .vize-section,
        .lisans-page .smyrna-section,
        .lisans-page .footer-section {
            background: transparent;
        }

        .lisans-page .text-purple {
            color: var(--accent-orange);
        }

        .lisans-page .section-title,
        .lisans-page .info-content .highlight-box,
        .lisans-page .tl-item h4 {
            color: #ffffff;
        }

        .lisans-page .info-content p,
        .lisans-page .tl-item p {
            color: rgba(255, 255, 255, 0.74);
        }

        .lisans-page .vize-section .reveal.delay-1 {
            color: rgba(255, 255, 255, 0.74) !important;
        }

        .lisans-page .highlight-box {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 4px solid #ff4181;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
        }

        .lisans-page .adv-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
        }

        .lisans-page .adv-card:hover {
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2);
        }

        .lisans-page .adv-card h4 {
            color: #ffffff;
        }

        .lisans-page .adv-card p {
            color: rgba(255, 255, 255, 0.72);
        }

        .lisans-page .compact-info-cards {
            gap: 14px;
            max-width: 660px;
            margin: 0 auto;
        }

        .lisans-page .compact-info-cards .adv-card {
            padding: 22px 18px;
            border-radius: 18px;
        }

        .lisans-page .compact-info-cards .adv-card:nth-child(even) {
            transform: translateY(18px);
        }

        .lisans-page .compact-info-cards .adv-card i {
            font-size: 1.7rem;
            margin-bottom: 12px;
        }

        .lisans-page .compact-info-cards .adv-card h4 {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .lisans-page .compact-info-cards .adv-card p {
            font-size: 0.84rem;
            line-height: 1.45;
        }

        .lisans-page .vize-grid::before {
            background: rgba(255, 255, 255, 0.18);
        }

        .lisans-page .tl-icon {
            border-color: rgba(18, 7, 43, 0.82);
            box-shadow: 0 10px 24px rgba(104, 37, 219, 0.28);
        }

        .lisans-page .footer-section {
            justify-content: flex-start;
            align-items: stretch;
            padding: 28px 0 0;
            overflow: visible;
        }

        .lisans-page .footer-section > .section-container {
            width: min(1300px, calc(100% - 10%));
            max-width: 1300px;
            margin: 0 auto 28px;
        }

        .newsletter-card-modern {
            background: linear-gradient(180deg, rgba(24, 16, 44, 0.96) 0%, rgba(14, 10, 30, 0.98) 100%);
            border-radius: 35px;
            padding: 48px 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            z-index: 10;
        }

        .nl-left h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 0;
        }

        .nl-right {
            flex: 0 0 55%;
        }

        .nl-right p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .nl-form {
            display: flex;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
        }

        .nl-form input {
            flex: 1;
            border: none !important;
            outline: none;
            padding: 0 25px;
            font-size: 1rem;
            font-family: inherit;
            background: transparent !important;
            color: #ffffff !important;
        }

        .nl-form input::placeholder {
            color: rgba(255, 255, 255, 0.5) !important;
        }

        .nl-form button {
            background: #FCA440 !important;
            color: #12072b !important;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .nl-form button:hover {
            background: #f39222 !important;
            color: #12072b !important;
            box-shadow: 0 10px 20px rgba(252, 164, 64, 0.32);
            transform: translateY(-2px);
        }

        .lisans-page .way2go-footer {
            background: transparent !important;
            padding: 72px 5% 32px;
            position: relative;
            color: rgba(255, 255, 255, 0.72);
            overflow: hidden;
            width: 100%;
            margin-top: -18px;
        }

        .lisans-page .way2go-footer::before {
            display: none !important;
            content: none;
        }

        .lisans-page .way2go-footer::after {
            display: none !important;
            content: none;
        }

        .lisans-page .footer-social-top,
        .lisans-page .footer-main-content {
            position: relative;
            z-index: 1;
        }

        .lisans-page .footer-social-top {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 35px;
            margin-bottom: 70px;
        }

        .lisans-page .footer-social-top a {
            background-color: rgba(255, 255, 255, 0.08);
            color: #f8f5ff;
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .lisans-page .footer-social-top a:hover {
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
        }

        .lisans-page .footer-social-top a.social-fb:hover { background-color: #1877F2; }
        .lisans-page .footer-social-top a.social-x:hover  { background-color: #000000; }
        .lisans-page .footer-social-top a.social-yt:hover { background-color: #FF0000; }
        .lisans-page .footer-social-top a.social-in:hover { background-color: #0A66C2; }
        .lisans-page .footer-social-top a.social-ig:hover { background-color: #E1306C; }
        .lisans-page .footer-social-top a.social-wa:hover { background-color: #25D366; }

        .lisans-page .footer-main-content {
            display: grid;
            grid-template-columns: 1.2fr 2.5fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .lisans-page .footer-logo-area {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .lisans-page .footer-custom-logo-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 20px;
        }

        .lisans-page .footer-custom-logo-icon {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .lisans-page .footer-app-name {
            font-weight: 700;
            color: rgba(255, 255, 255, 0.74);
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .lisans-page .way2go-footer .footer-links-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 0;
        }

        .lisans-page .way2go-footer .footer-links-area ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .lisans-page .way2go-footer .footer-links-area ul li {
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lisans-page .way2go-footer .footer-links-area ul li::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: #ff4181;
            border-radius: 50%;
        }

        .lisans-page .way2go-footer .footer-links-area a {
            color: rgba(255, 255, 255, 0.88);
            text-decoration: none;
            line-height: 1.5;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s;
        }

        .lisans-page .way2go-footer .footer-links-area a:hover {
            color: #FCA440;
        }

        .lisans-page .footer-right-area {
            display: flex;
            flex-direction: column;
            gap: 5px;
            text-align: left;
        }

        .lisans-page .footer-test-link {
            font-weight: 800;
            font-size: 1.1rem;
            color: #ffffff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 5px;
            transition: color 0.3s;
        }

        .lisans-page .footer-test-link:hover {
            color: #FCA440;
        }

        .lisans-page .footer-right-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.66);
            line-height: 1.6;
            margin-bottom: 15px;
            margin-top: 0;
        }

        /* =========================================
           RESPONSIVE (MOBİL & TABLET UYUMU)
           ========================================= */
        @media (max-width: 1024px) {
            /* Fullpage kaydırmayı mobilde iptal et, normal scroll'a geç */
            html, body { overflow-y: auto !important; position: static !important; height: auto !important; }
            #fullpage-wrapper { transform: none !important; height: auto !important; transition: none !important; }
            .fp-section { height: auto !important; min-height: 100vh; padding: 100px 5% 60px !important; display: flex; flex-direction: column; justify-content: flex-start;}
            
            /* Header Mobil Düzenlemeler */
            .pill-nav-container, .header-actions { display: none !important; }
            .thegem-mobile-menu-btn { display: block; color: #fff; font-size: 1.8rem; cursor: pointer; }
            .thegem-header.scrolled .thegem-mobile-menu-btn { color: #111; }
            
            /* Grid Yığınlamaları (Stacking) */
            .info-grid { grid-template-columns: 1fr; gap: 40px; }
            .info-content { text-align: center; }
            .adv-grid .adv-card:nth-child(even) { transform: none; }
            .smyrna-grid { grid-template-columns: 1fr; }
            .burs-faq-grid { grid-template-columns: 1fr; gap: 36px; }
            .docs-mirror-grid { grid-template-columns: 1fr; gap: 30px; }
            .docs-cards-grid { order: 2; }
            .burs-content { max-width: none; }
            .burs-visuals { min-height: 460px; order: 2; }
            
            /* Yatay Swipe Düzenlemeleri (req-grid, burs-grid, vize-grid ve ülkeler için) */
            .req-grid, .burs-grid, .vize-grid, .smyrna-grid { display: flex; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; gap: 15px; }
            .req-grid::-webkit-scrollbar, .burs-grid::-webkit-scrollbar, .vize-grid::-webkit-scrollbar, .smyrna-grid::-webkit-scrollbar { display: none; }
            .req-card, .burs-item, .tl-item, .smyrna-card { flex: 0 0 85vw; max-width: 85vw; scroll-snap-align: center; }
            .vize-grid::before { display: none; }

            .req-carousel { position: relative; }
            .req-arrow {
                display: flex; align-items: center; justify-content: center;
                position: absolute; top: 50%; transform: translateY(-50%);
                width: 38px; height: 38px; border-radius: 50%; z-index: 20;
                background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
                color: #fff; font-size: 0.95rem; cursor: pointer; backdrop-filter: blur(6px);
                transition: 0.2s; padding: 0;
            }
            .req-arrow:hover { background: var(--primary-lime); color: #111; border-color: var(--primary-lime); }
            .req-arrow-prev { left: -4px; }
            .req-arrow-next { right: -4px; }

            /* Accordion Mobil Uyumu (Swipe Kartlara Dönüştür) */
            .accordion-gallery { display: flex; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; height: 380px; gap: 15px; padding-bottom: 10px; margin-top: 20px;}
            .accordion-gallery::-webkit-scrollbar { display: none; }
            .acc-panel { flex: 0 0 85vw !important; scroll-snap-align: center; border-radius: 20px; }
            .acc-content { opacity: 1; transform: translateY(0); padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%);}
            .acc-title-vertical { display: none; }
            
            .section-title { font-size: 2.2rem; text-align: center; }
            .hero-title { font-size: 2.8rem; padding-top: 40px;}
            .hero-stats-row { flex-wrap: nowrap; gap: 8px; }
            .hero-stat-badge { flex: 1 1 0; min-width: 0; padding: 10px 8px; gap: 6px; }
            .hero-stat-badge i { font-size: 1rem; flex-shrink: 0; }
            .hero-stat-info strong { font-size: 0.7rem; white-space: normal; }
            .hero-stat-info span { font-size: 0.5rem; white-space: normal; line-height: 1.15; }
            .burs-title { margin-bottom: 24px; }
            .burs-accordion .accordion-header { padding: 20px 0; }
            .burs-accordion .accordion-header h3 { font-size: 1rem; }
            .burs-accordion .accordion-body p { padding-right: 10px; font-size: 1rem; }
            .burs-visuals { min-height: 340px; }
            .burs-visual-bg { inset: 18px auto 18px 14px; width: 82%; border-radius: 24px; transform: none; top: auto; left: auto; }
            .burs-main-image { width: min(100%, 360px); border-radius: 24px; }
            .burs-dots-pattern { width: 90px; height: 90px; background-size: 14px 14px; }
            .burs-left-arrows { left: 0; top: 62%; }
            .burs-right-arrows { right: 8px; bottom: 12%; }
            .newsletter-card-modern {
                flex-direction: column;
                text-align: center;
                padding: 36px 30px;
                gap: 30px;
            }

            .nl-left h2 {
                font-size: 2.2rem;
            }

            .nl-form {
                flex-direction: column;
                border: none;
                box-shadow: none;
                padding: 0;
                gap: 15px;
                background: transparent;
            }

            .nl-form input {
                background: rgba(255, 255, 255, 0.08) !important;
                border: 1px solid rgba(255, 255, 255, 0.12) !important;
                padding: 18px 25px;
                border-radius: 50px;
            }

            .nl-form button {
                width: 100%;
            }

            .lisans-page .thegem-header-container {
                padding: 0 20px;
            }

            .lisans-page .footer-section {
                padding-top: 42px;
            }

            .lisans-page .way2go-footer {
                padding: 72px 5% 32px;
                margin-top: -10px;
            }

            .lisans-page .footer-main-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .lisans-page .footer-logo-area,
            .lisans-page .footer-right-area {
                align-items: center;
                text-align: center;
            }

            .lisans-page .way2go-footer .footer-links-area {
                grid-template-columns: 1fr;
                width: max-content;
                margin: 0 auto;
            }

            .lisans-page .way2go-footer .footer-links-area ul {
                text-align: left;
            }
        }

        /* Program heading palette override */
        :root {
            --w2g-title-white: #ffffff;
            --w2g-title-orange: #FCA440;
            --w2g-title-lavender: #CAA7F0;
            --w2g-title-lime: #CBD83B;
        }

        .hero-title,
        .section-title,
        .burs-title,
        .newsletter-card-modern h2 {
            background: none !important;
            color: var(--w2g-title-white) !important;
            -webkit-text-fill-color: var(--w2g-title-white) !important;
            text-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
        }

        .hero-title span,
        .section-title .text-orange,
        .text-orange {
            background: none !important;
            color: var(--w2g-title-orange) !important;
            -webkit-text-fill-color: var(--w2g-title-orange) !important;
        }

        .section-title .text-purple,
        .text-purple,
        .text-gradient {
            background: none !important;
            color: var(--w2g-title-lavender) !important;
            -webkit-text-fill-color: var(--w2g-title-lavender) !important;
        }

        .section-title .text-lime,
        .burs-title span,
        .text-lime {
            background: none !important;
            color: var(--w2g-title-lime) !important;
            -webkit-text-fill-color: var(--w2g-title-lime) !important;
        }

        .adv-card h4,
        .burs-item h4,
        .smyrna-card h3,
        .acc-content h3,
        .accordion-header h3 {
            background: none !important;
            color: var(--w2g-title-lime) !important;
            -webkit-text-fill-color: var(--w2g-title-lime) !important;
        }

        .tl-item h4 {
            background: none !important;
            color: var(--w2g-title-lavender) !important;
            -webkit-text-fill-color: var(--w2g-title-lavender) !important;
        }

        .req-card h3 {
            background: none !important;
            color: #7EC8F0 !important;
            -webkit-text-fill-color: #7EC8F0 !important;
        }

        #mcgill-spotlight-section .burs-main-image {
            border-radius: 50% !important;
        }

        #mcgill-spotlight-section .burs-accordion .accordion-item.active .accordion-body {
            max-height: 190px !important;
            overflow-y: auto !important;
        }

        #mcgill-spotlight-section .accordion-header h3 {
            background: none !important;
            color: #7CC5FF !important;
            -webkit-text-fill-color: #7CC5FF !important;
        }

        #burs-section .accordion-header h3 {
            background: none !important;
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
        }

        #burs-section .burs-title span {
            background: none !important;
            color: var(--w2g-title-orange) !important;
            -webkit-text-fill-color: var(--w2g-title-orange) !important;
        }

        /* Lisans Eğitiminin Avantajları başlık rengi */
        :root {
            --w2g-title-blue: #4F8EF7;
        }

        .section-title .text-blue,
        .burs-title .text-blue {
            background: none !important;
            color: var(--w2g-title-blue) !important;
            -webkit-text-fill-color: var(--w2g-title-blue) !important;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #ffffff; }
        ::-webkit-scrollbar-thumb { background: #6825db; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: #311266; }
