        /* --- GENEL DEĞİŞKENLER VE AYARLAR --- */
        :root {
            --primary-green: #014131;
            --accent-teal: #42726d;
            --dark-bg: #1a1e22;
            --text-dark: #222222;
            --text-gray: #555555;
            --bg-light: #f6f9f8; 
            --white: #ffffff;
            --pdf-width: 65%; /* Web için varsayılan PDF genişliği */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, input, button, textarea, select {
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light); 
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        /* --- 1. HEADER --- */
        .navbar {
            background: #ffffff;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .logo img { height: 60px; display: block; }

        .nav-center { display: flex; gap: 20px; align-items: center; margin-left: auto; margin-right: 40px; }
        .nav-item { position: relative; padding: 10px 0; cursor: pointer; }
        .nav-link {
            color: #000000; font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
            padding: 8px 12px; border-radius: 5px; display: block;
        }
        .nav-link:hover { color: var(--primary-green); background-color: rgba(1, 65, 49, 0.05); }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            width: 960px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0 24px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            border-top: 3px solid var(--accent-teal);
            border-radius: 16px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            padding: 20px 16px;
            z-index: 1001;
            text-align: left;
        }

        .dropdown-col {
            display: flex;
            flex-direction: column;
        }

        .dropdown-col-title {
            display: block;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-teal);
            padding: 6px 20px 10px;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-dark);
            text-transform: none;
            text-shadow: none;
            white-space: nowrap;
            transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
        }

        .dropdown-menu li a i {
            width: 16px;
            flex-shrink: 0;
            text-align: center;
            font-size: 0.8rem;
            color: var(--accent-teal);
            transition: color 0.25s ease;
        }

        .dropdown-col li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu li a:hover {
            background: #f0f8f7;
            color: var(--primary-green);
            padding-left: 25px;
        }

        .dropdown-menu li a:hover i {
            color: var(--primary-green);
        }

        .dropdown-placeholder a,
        .dropdown-placeholder a:hover {
            visibility: hidden;
            pointer-events: none;
            background: transparent;
            padding-left: 20px;
        }

        .dropdown-menu li a.active-page {
            color: var(--primary-green);
            font-weight: 700;
            background-color: rgba(1, 65, 49, 0.05);
        }

        .nav-right { display: flex; gap: 15px; align-items: center; }
        .btn-lang {
            padding: 8px 12px;
            border: 2px solid #000000;
            border-radius: 50px;
            background: transparent;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
        }
        .btn-lang:hover {
            border-color: var(--primary-green);
            transform: translateY(-2px);
        }
        .btn-auth {
            padding: 10px 20px; border: 2px solid #000000; color: #000000; border-radius: 50px;
            font-weight: 600; font-size: 0.85rem; background: transparent;
        }
        .btn-auth:hover { background-color: var(--primary-green); border-color: var(--primary-green); color: #ffffff; transform: translateY(-2px); }
        .hamburger-menu { display: none; font-size: 2rem; color: #000; cursor: pointer; }

        :root {
            --primary-green: #014131;
            --accent-teal: #42726d;
            --white: #ffffff;
            --text-dark: #333333;
            --border-color: #e0e0e0;
            --bg-light: #f4f9f8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #ffffff;
            -webkit-font-smoothing: antialiased;
        }

        .privacy-section {
            padding: 60px 5%;
            background-color: #ffffff;
            min-height: 100vh;
        }

        .privacy-container {
            max-width: 900px;
            margin: 0 auto;
        }

        /* Header Styles */
        .privacy-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
        }

        .privacy-header .company-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .privacy-header .sub-title {
            font-size: 1.1rem;
            font-style: italic;
            color: #555;
            margin-bottom: 15px;
        }

        .privacy-header .contact-info {
            font-size: 0.85rem;
            color: #777;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 25px;
            margin-bottom: 30px;
        }

        .privacy-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-green);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .privacy-header .version-info {
            font-size: 0.95rem;
            font-style: italic;
            color: #777;
        }

        /* Content Styles */
        .privacy-content {
            font-size: 1rem;
            line-height: 1.8;
            color: #444;
        }

        .privacy-content p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .privacy-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-top: 40px;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid var(--border-color);
        }

        .privacy-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-top: 25px;
            margin-bottom: 10px;
        }

        .privacy-content ul {
            margin-bottom: 20px;
            padding-left: 10px;
            list-style-type: none;
        }

        .privacy-content ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .privacy-content ul li::before {
            content: "–";
            position: absolute;
            left: 0;
            color: var(--text-dark);
        }

        /* Box / Info Styles */
        .info-box {
            background-color: var(--bg-light);
            border: 1px solid var(--accent-teal);
            padding: 15px 20px;
            margin: 20px 0;
            font-size: 0.95rem;
            color: var(--accent-teal);
        }
        
        .info-box strong {
            color: #d35400; /* As seen in some images for "Önemli Taahhüt" etc */
            display: block;
            margin-bottom: 5px;
        }

        /* Table Styles */
        .privacy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }

        .privacy-table th, .privacy-table td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
            vertical-align: top;
        }

        .privacy-table th {
            background-color: #f9fbfc;
            color: var(--primary-green);
            font-weight: 700;
        }

        /* Contact Grid for Section 1 and 15 */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
        }

        .contact-col {
            padding: 20px;
        }

        .contact-col.light-bg {
            background-color: var(--bg-light);
            border-right: 1px solid var(--border-color);
        }

        .contact-label {
            color: var(--accent-teal);
            font-weight: 700;
            margin-bottom: 5px;
            display: block;
        }

        .footer-note {
            text-align: center;
            font-style: italic;
            color: #777;
            font-size: 0.9rem;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .contact-col.light-bg {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }
            .privacy-header h2 {
                font-size: 1.8rem;
            }
        }

        /* --- MOBİL MENÜ OVERLAY --- */
        .mobile-menu-overlay { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background: var(--primary-green); z-index: 2000; transition: 0.5s; display: flex; flex-direction: column; padding: 40px 10%; overflow-y: auto; }
        .mobile-menu-overlay.active { left: 0; }
        .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
        .mobile-nav-link { color: white; font-size: 1.3rem; font-weight: 700; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 15px 0; }
        .mobile-dropdown { max-height: 0; overflow: hidden; transition: 0.3s; background: rgba(0,0,0,0.1); border-radius: 10px; }
        .mobile-dropdown.active { max-height: 800px; padding: 10px 20px; }
        .mobile-dropdown a { color: #4db6ac; display: block; padding: 10px 0; }
        .close-mobile-menu { color: white; font-size: 2.5rem; cursor: pointer; }
        .mobile-nav-list { display: flex; flex-direction: column; gap: 20px; }
        .mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }

        /* --- FOOTER --- */
        footer { background-color: #1a1e22; color: #b0b0b0; padding: 80px 5% 60px; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; max-width: 1200px; margin: 0 auto; }
        .footer-col h4 { color: #fff; font-size: 1.4rem; margin-bottom: 25px; }
        .footer-logo { width: 210px; margin: -35px 0 15px -45px; }
        .footer-socials { display: flex; gap: 15px; margin-top: 30px; }
        .footer-socials a { width: 45px; height: 45px; background: #000; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 1.3rem; transition: 0.3s; }
        .footer-socials a:hover { background: var(--accent-teal); transform: translateY(-3px); }

        /* --- RESPONSIVE AYARLARI --- */
        @media (max-width: 992px) {
            .nav-center, .nav-right { display: none; }
            .hamburger-menu { display: block; position: relative; z-index: 1001; }
            .footer-content { text-align: center; }
            .footer-socials { justify-content: center; }
            .footer-logo { margin: 0 auto 15px; }
        }

        @media (max-width: 768px) {
            :root { --pdf-width: 95%; }
        }

        @media (max-width: 576px) {
            .handbook-section { padding: 40px 5% 60px; }
            .pdf-container { height: 65vh; min-height: 400px; padding: 20px 0; }
            .pdf-toolbar button span, .pdf-toolbar a span { display: none; }
            .pdf-toolbar { gap: 10px; padding: 12px; }
            .pdf-toolbar button, .pdf-toolbar a { padding: 12px 15px; font-size: 1.2rem; }
        }

/* --- WhatsApp float button --- */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            z-index: 1500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: whatsapp-pulse 2.5s infinite;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }

        @keyframes whatsapp-pulse {
            0% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
                bottom: 18px;
                right: 18px;
            }
        }
