        /* Ana sitedeki tüm stil tanımlarını buraya ekleyin */
        :root {
            --primary: #1a4b8c;
            --secondary: #4CAF50;
            --accent: #FFD700;
            --dark: #222;
            --light: #f9f9f9;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Stilleri (Ana siteden aynen alınmıştır) */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            margin-right: 12px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon::after {
            content: "₺";
            position: absolute;
            font-size: 30px;
            opacity: 0.15;
            transform: rotate(15deg);
            right: 5px;
            bottom: -5px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Gizlilik Politikası İçerik Stilleri */
        .privacy-container {
            background: white;
            padding: 100px 40px 60px;
            margin: 30px 0;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        
        .privacy-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .privacy-header h1 {
            color: var(--primary);
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        .privacy-header p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .privacy-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section h2 {
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        
        .privacy-section h3 {
            color: var(--secondary);
            font-size: 20px;
            margin: 25px 0 15px;
        }
        
        .privacy-section p, .privacy-section ul {
            margin-bottom: 15px;
            color: #555;
        }
        
        .privacy-section ul {
            padding-left: 20px;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
        }
        
        /* Footer Stilleri (Ana siteden aynen alınmıştır) */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #aaa;
        }
        
        .contact-item i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: #777;
            font-size: 14px;
        }