
        :root {
            --primary-dark: #0c1e3e;
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #8b4513;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --text-color: #333;
            --gray-light: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .main-content {
            flex: 1;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        /* Header - 3 Bölümlü Modern Tasarım */
        .main-header {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }
        
        /* 1. Bölüm - Sosyal Medya */
        .social-section {
            flex: 1;
            display: flex;
            gap: 12px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icon:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), #e6c158);
            border-radius: 50%;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .social-icon i {
            position: relative;
            z-index: 1;
            font-size: 1.1rem;
        }
        
        .social-icon:hover:after {
            transform: translateY(0);
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 2. Bölüm - Logo ve Menü */
        .logo-menu-section {
            flex: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 30px;
        }
        
        .site-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-decoration: none;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            letter-spacing: 1px;
        }
        
        .site-logo span {
            color: var(--secondary-color);
            position: relative;
        }
        
        .site-logo span:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(212, 175, 55, 0.2);
            z-index: -1;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 35px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        
        .nav-link:hover:before,
        .nav-link.active:before {
            width: 100%;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--secondary-color);
        }
        
        /* 3. Bölüm - Blog ve Dil */
        .blog-language-section {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 25px;
        }
        
        .blog-header-btn {
            background: linear-gradient(135deg, var(--accent-color), #a0522d);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .blog-header-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }
        
        .blog-header-btn:hover:before {
            left: 100%;
        }
        
        .blog-header-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
        }
        
        .language-switcher {
            display: flex;
            background-color: var(--gray-light);
            border-radius: 30px;
            padding: 5px;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .lang-btn {
            background: transparent;
            border: none;
            padding: 8px 18px;
            border-radius: 25px;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .lang-btn.active {
            background-color: white;
            color: var(--primary-dark);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* YENİ: Mobil Menü Tasarımı - Buton Sağda */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--primary-dark);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .mobile-menu-btn:hover {
            background-color: rgba(12, 30, 62, 0.05);
        }
        
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
        }
        
        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100%;
            background: white;
            z-index: 1000;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-menu-container.active {
            right: 0;
        }
        
        .mobile-menu-header {
            padding: 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-menu-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            line-height: 1.3;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-menu-logo .avukat-text {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .mobile-menu-logo .name-text {
            font-size: 1.8rem;
            color: var(--secondary-color);
        }
        
        .mobile-close-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .mobile-close-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .mobile-nav {
            flex: 1;
            padding: 30px 25px;
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }
        
        .mobile-nav li {
            margin-bottom: 15px;
        }
        
        .mobile-nav a {
            display: block;
            padding: 15px 20px;
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 10px;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        
        .mobile-nav a:hover,
        .mobile-nav a.active {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--secondary-color);
            border-left-color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .mobile-language-switcher {
            display: flex;
            background-color: var(--gray-light);
            border-radius: 30px;
            padding: 5px;
            margin: 0 25px 30px;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-lang-btn {
            flex: 1;
            background: transparent;
            border: none;
            padding: 10px;
            border-radius: 25px;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .mobile-lang-btn.active {
            background-color: white;
            color: var(--primary-dark);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-social-section {
            padding: 25px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .mobile-social-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .mobile-social-icon:hover {
            background: linear-gradient(135deg, var(--secondary-color), #e6c158);
            transform: translateY(-3px);
        }
        
        /* İletişim Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(12, 30, 62, 0.9), rgba(12, 30, 62, 0.85)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 180px 0 100px;
            margin-top: 100px;
            text-align: center;
            position: relative;
        }
        
        .contact-hero:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, white);
        }
        
        .contact-hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .contact-hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* İletişim Form Alanı */
        .contact-section {
            padding: 80px 0;
            background-color: #f9fafc;
        }
        
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-form-wrapper {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            position: relative;
            display: inline-block;
        }
        
        .form-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .form-subtitle {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Form Stilleri */
        .contact-form {
            width: 100%;
        }
        
        .form-group {
            margin-bottom: 30px;
            position: relative;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 1.1rem;
        }
        
        .form-label .required {
            color: #e74c3c;
            margin-left: 3px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s;
            background-color: #fff;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        
        .form-control.textarea {
            min-height: 180px;
            resize: vertical;
        }
        
        .form-control::placeholder {
            color: #999;
        }
        
        .form-hint {
            display: block;
            margin-top: 8px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .privacy-link {
            color: var(--primary-color);
            text-decoration: underline;
            cursor: pointer;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .privacy-link:hover {
            color: var(--secondary-color);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }
        
        .submit-btn:hover:before {
            left: 100%;
        }
        
        .submit-btn:hover {
            background: linear-gradient(135deg, var(--primary-dark), #091a36);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(12, 30, 62, 0.2);
        }
        
        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .submit-btn i {
            font-size: 1.2rem;
        }
        
        /* Form Mesajları */
        .form-message {
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: rgba(46, 204, 113, 0.1);
            color: #27ae60;
            border: 1px solid rgba(46, 204, 113, 0.3);
            display: block;
        }
        
        .form-message.error {
            background-color: rgba(231, 76, 60, 0.1);
            color: #c0392b;
            border: 1px solid rgba(231, 76, 60, 0.3);
            display: block;
        }
        
        /* Gizlilik Politikası Modal */
        .privacy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1100;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .privacy-modal.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }
        
        .privacy-modal-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
            transform: translateY(30px);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .privacy-modal.active .privacy-modal-content {
            transform: translateY(0);
        }
        
        .privacy-modal-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: white;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .privacy-modal-title {
            font-size: 1.8rem;
            margin: 0;
            color: white;
        }
        
        .privacy-close-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .privacy-close-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .privacy-modal-body {
            padding: 30px;
            overflow-y: auto;
            max-height: calc(85vh - 100px);
        }
        
        .privacy-content {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-color);
        }
        
        .privacy-content h3 {
            font-size: 1.3rem;
            margin: 25px 0 15px;
            color: var(--primary-dark);
            padding-bottom: 8px;
            border-bottom: 2px solid var(--gray-light);
        }
        
        .privacy-content h4 {
            font-size: 1.1rem;
            margin: 20px 0 10px;
            color: var(--primary-dark);
        }
        
        .privacy-content p {
            margin-bottom: 15px;
        }
        
        .privacy-content ul {
            margin-bottom: 20px;
            padding-left: 25px;
        }
        
        .privacy-content li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .privacy-content li:before {
            content: '•';
            color: var(--secondary-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .privacy-date {
            color: #666;
            font-style: italic;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-light);
            text-align: right;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .data-table td {
            padding: 15px;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .data-table tr:last-child td {
            border-bottom: none;
        }
        
        .data-table tr:nth-child(even) {
            background-color: rgba(12, 30, 62, 0.03);
        }
        
        /* Footer - Modern */
        .footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
            width: 100%;
            margin-top: auto;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .footer-logo span {
            color: var(--secondary-color);
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .footer-social a:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            border-radius: 50%;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .footer-social a i {
            position: relative;
            z-index: 1;
        }
        
        .footer-social a:hover:after {
            transform: translateY(0);
        }
        
        .footer-social a:hover {
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive Tasarım */
        @media (max-width: 1200px) {
            .contact-hero-title {
                font-size: 3rem;
            }
            
            .site-logo {
                font-size: 2.5rem;
            }
            
            .form-title {
                font-size: 2.2rem;
            }
            
            .privacy-modal-content {
                max-width: 700px;
            }
        }
        
        @media (max-width: 992px) {
            .header-container {
                padding: 12px 0;
                position: relative;
            }
            
            /* Masaüstü menüyü gizle, mobil menü butonunu göster */
            .social-section, .blog-language-section, .main-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
            }
            
            .logo-menu-section {
                order: 1;
                padding: 0;
                flex: 1;
                text-align: left;
                align-items: flex-start;
            }
            
            .site-logo {
                font-size: 2.2rem;
                margin-bottom: 0;
                text-align: left;
            }
            
            .contact-hero {
                padding: 150px 0 80px;
                margin-top: 80px;
            }
            
            .contact-hero-title {
                font-size: 2.5rem;
            }
            
            .contact-form-wrapper {
                padding: 35px;
            }
            
            .mobile-menu-overlay {
                display: block;
            }
            
            /* Mobil menü açıkken body scroll'u engelle */
            body.menu-open {
                overflow: hidden;
            }
            
            .privacy-modal-content {
                max-width: 90%;
                max-height: 90vh;
            }
            
            .privacy-modal-body {
                max-height: calc(90vh - 100px);
            }
        }
        
        @media (max-width: 768px) {
            .contact-hero-title {
                font-size: 2.2rem;
            }
            
            .contact-hero-subtitle {
                font-size: 1.1rem;
                padding: 0 20px;
            }
            
            .contact-form-wrapper {
                padding: 25px;
            }
            
            .form-title {
                font-size: 1.8rem;
            }
            
            .form-subtitle {
                font-size: 1rem;
            }
            
            .mobile-menu-container {
                width: 280px;
            }
            
            .privacy-modal-header {
                padding: 20px;
            }
            
            .privacy-modal-title {
                font-size: 1.5rem;
            }
            
            .privacy-modal-body {
                padding: 20px;
            }
            
            .data-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 576px) {
            .site-logo {
                font-size: 1.8rem;
            }
            
            .contact-hero-title {
                font-size: 1.8rem;
            }
            
            .contact-hero {
                padding: 120px 0 60px;
                margin-top: 70px;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-control {
                padding: 12px 15px;
            }
            
            .submit-btn {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .privacy-modal-content {
                width: 95%;
                max-height: 95vh;
            }
            
            .privacy-modal-body {
                max-height: calc(95vh - 100px);
            }
            
            .privacy-content h3 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .contact-hero-title {
                font-size: 1.6rem;
            }
            
            .contact-hero-subtitle {
                font-size: 1rem;
            }
            
            .form-title {
                font-size: 1.6rem;
            }
            
            .privacy-modal-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .privacy-modal-title {
                font-size: 1.3rem;
            }
        }
        
        /* Scroll Bar Özelleştirme */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--secondary-color), var(--accent-color));
            border-radius: 5px;
        }
        
        .privacy-modal-body::-webkit-scrollbar {
            width: 8px;
        }
        
        .privacy-modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        
        .privacy-modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--secondary-color), var(--accent-color));
            border-radius: 4px;
        }
