/* KVKK-GDPR Sayfası Özel Stilleri - Nasıl Çalışır Renk Paleti */

/* Hero Section */
.gdpr-hero {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.gdpr-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.gdpr-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.gdpr-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.gdpr-hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gdpr-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.gdpr-hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.gdpr-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #2563eb;
}

.gdpr-hero-meta span:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gdpr-hero-meta i {
    color: #2563eb;
    font-size: 1.1rem;
}

.gdpr-hero-meta .last-updated {
    color: #2563eb;
}

.gdpr-hero-meta .compliance-status {
    color: #2563eb;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
}

.gdpr-hero-meta .compliance-status:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.4);
}

.gdpr-hero-meta .compliance-status i {
    color: #2563eb;
}

/* Content Section */
.gdpr-content-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.gdpr-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Table of Contents */
.table-of-contents {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 5px solid #2563eb;
}

.toc-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.toc-list a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    transform: translateX(5px);
}

/* GDPR Sections */
.gdpr-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.gdpr-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.gdpr-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gdpr-section-title i {
    color: #2563eb;
    font-size: 1.8rem;
}

.gdpr-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

/* KVKK Overview */
.kvkk-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.kvkk-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.kvkk-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.kvkk-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kvkk-icon i {
    color: white;
    font-size: 1.2rem;
}

.kvkk-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.kvkk-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* GDPR Principles */
.gdpr-principles h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.principle {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.principle-icon i {
    color: white;
    font-size: 1.5rem;
}

.principle-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.principle-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Data Categories */
.data-categories-gdpr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-category-gdpr {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.data-category-gdpr:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.category-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.data-category-gdpr ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-category-gdpr li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.data-category-gdpr li:last-child {
    border-bottom: none;
}

/* Processing Methods */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.method-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon i {
    color: white;
    font-size: 1.8rem;
}

.method-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.method-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* User Rights */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.right-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.right-icon i {
    color: white;
    font-size: 1.5rem;
}

.right-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.right-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Exercise Rights Button */
.exercise-right-btn {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.exercise-right-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0c7cd6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Rights Exercise Steps */
.rights-exercise {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.rights-exercise h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.exercise-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.step:hover {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step:hover .step-number {
    background: white;
    color: #2563eb;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.step:hover .step-content h4 {
    color: white;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.step:hover .step-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Security Measures */
.security-measures-gdpr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-measure-gdpr {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.security-measure-gdpr:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.measure-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.measure-icon i {
    color: white;
    font-size: 1.5rem;
}

.measure-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.measure-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.measure-content li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.measure-content li:last-child {
    border-bottom: none;
}

.measure-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Contact Information */
.gdpr-contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.gdpr-contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    transform: translateY(-2px);
}

.contact-method i {
    color: #2563eb;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method:hover i {
    color: white;
}

.contact-method h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-method:hover h3 {
    color: white;
}

.contact-method a,
.contact-method p {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0;
}

.contact-method:hover a,
.contact-method:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-method a:hover {
    color: white;
}

/* Processing Purposes */
.processing-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.purpose-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.purpose-icon i {
    color: white;
    font-size: 1.5rem;
}

.purpose-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.purpose-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Legal Basis */
.legal-basis {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid #2563eb;
}

/* Legal Basis Badge for Purpose Cards */
.purpose-card .legal-basis {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 1rem 0 0 0;
    border-left: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.purpose-card .legal-basis:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Processing Methods */
.processing-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Data Transfer Information */
.data-transfer-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.transfer-scenario {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.transfer-scenario:hover {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    transform: translateY(-2px);
}

.transfer-scenario h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.transfer-scenario:hover h3 {
    color: white;
}

.transfer-scenario p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.transfer-scenario:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.transfer-scenario ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transfer-scenario li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.transfer-scenario:hover li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.transfer-scenario li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.transfer-scenario:hover li::before {
    color: white;
}

/* International Transfer */
.international-transfer {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.international-transfer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.international-transfer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.international-transfer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.international-transfer li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.international-transfer li:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding-left: 3.5rem;
    margin: 0.25rem 0;
    color: #333;
}

.international-transfer li:last-child {
    border-bottom: none;
}

.international-transfer li i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.international-transfer li:hover i {
    color: #0ea5e9;
    transform: scale(1.1);
}

/* User Rights */
.user-rights-gdpr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.right-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.right-icon i {
    color: white;
    font-size: 1.5rem;
}

.right-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.right-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* KVKK Form Download */
.kvkk-form-download {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.kvkk-form-download h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.kvkk-form-download p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.download-form-btn {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.download-form-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0c7cd6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

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

/* Compliance Status */
.compliance-status {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.compliance-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.compliance-badge {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.compliance-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.compliance-badge i {
    font-size: 1.2rem;
}

.compliance-badge span {
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gdpr-hero {
        padding: 3rem 0;
    }
    
    .gdpr-hero-content {
        margin: 1rem auto 0 auto;
    }
    
    .gdpr-hero-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .gdpr-hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .gdpr-hero-meta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .gdpr-hero-meta span {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .gdpr-content {
        padding: 2rem;
    }
    
    .gdpr-section-title {
        font-size: 1.5rem;
    }
    
    .kvkk-overview,
    .principles-grid,
    .data-categories-gdpr,
    .methods-grid,
    .rights-grid,
    .security-measures,
    .contact-methods,
    .processing-purposes,
    .processing-methods,
    .data-transfer-info,
    .user-rights-gdpr,
    .exercise-steps,
    .security-measures-gdpr,
    .compliance-badges {
        grid-template-columns: 1fr;
    }
    
    .gdpr-content-container {
        padding: 0 1rem;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .purpose-card .legal-basis {
        font-size: 0.85rem;
        padding: 7px 14px;
    }
    
    .international-transfer li {
        padding-left: 2.5rem;
        gap: 0.75rem;
    }
    
    .international-transfer li:hover {
        padding-left: 3rem;
    }
    
    .international-transfer li i {
        font-size: 1.1rem;
        width: 20px;
    }
}

@media (max-width: 576px) {
    .gdpr-hero-content {
        margin: 0.5rem auto 0 auto;
    }
    
    .gdpr-hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .gdpr-hero-meta {
        margin-top: 1rem;
    }
    
    .gdpr-hero-meta span {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .gdpr-content {
        padding: 1.5rem;
    }
    
    .gdpr-section-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .table-of-contents {
        padding: 1.5rem;
    }
    
    .kvkk-item,
    .principle,
    .data-category-gdpr,
    .method-item,
    .right-item,
    .security-item,
    .contact-method,
    .purpose-card,
    .transfer-scenario,
    .right-card,
    .step,
    .security-measure-gdpr,
    .compliance-badge {
        padding: 1rem;
    }
    
    .download-form-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .purpose-card .legal-basis {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin: 0.75rem 0 0 0;
    }
    
    .international-transfer li {
        padding-left: 2rem;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .international-transfer li:hover {
        padding-left: 2.5rem;
    }
    
    .international-transfer li i {
        font-size: 1rem;
        width: 18px;
    }
}

/* KVKK Modal Styles - Kariyer.html'den alınan başarılı sistem */
.kvkk-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    pointer-events: auto !important;
}

.kvkk-modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible !important;
    pointer-events: auto !important;
}

.kvkk-modal .modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: auto;
    z-index: 1000000 !important;
}

.kvkk-modal.active .modal-content {
    transform: scale(1);
}

.kvkk-modal .modal-header {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%) !important;
    color: white !important;
    padding: 30px !important;
    border-radius: 20px 20px 0 0 !important;
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: none !important;
    z-index: 10 !important;
    margin-bottom: 0 !important;
    top: auto !important;
    min-height: auto !important;
}

.kvkk-modal .modal-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
    text-shadow: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.3 !important;
}

.kvkk-modal .modal-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    color: white !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    font-size: 1.2rem !important;
    z-index: 1000000 !important;
}

.kvkk-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: rotate(90deg) !important;
}

/* Body scroll prevention when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* Ensure modal is always on top */
.kvkk-modal {
    position: fixed !important;
    z-index: 999999 !important;
}

/* Force modal to be visible */
.kvkk-modal.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Additional fixes for modal positioning */
.kvkk-modal:not(.active) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Ensure modal content is properly positioned */
.kvkk-modal .modal-content {
    position: relative !important;
    z-index: 1000000 !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
}

/* Override any conflicting styles */
.kvkk-modal.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Animation for modal content */
@keyframes kvkkModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.kvkk-modal .modal-content {
    animation: kvkkModalFadeIn 0.3s ease;
}

/* Form Styles */
.kvkk-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox and Radio Styles */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.checkbox-label:hover,
.radio-label:hover {
    background-color: #f8fafc;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    display: none;
}

.checkmark,
.radiomark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radiomark {
    border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.radio-label input[type="radio"]:checked + .radiomark {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-color: #2563eb;
}

.radio-label input[type="radio"]:checked + .radiomark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* File Upload Styles */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: #2563eb;
    background: #f0f9ff;
}

.file-upload-label i {
    font-size: 2rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.file-upload-label span {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.file-upload-label small {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0c7cd6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .kvkk-modal .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }

    .kvkk-modal .modal-header {
        padding: 20px;
    }

    .kvkk-modal .modal-title {
        font-size: 1.5rem;
        padding-right: 40px;
    }

    .kvkk-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .kvkk-modal .modal-content {
        width: 98%;
        margin: 0.5rem;
    }
    
    .kvkk-form {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .checkbox-group,
    .radio-group {
        gap: 0.5rem;
    }
    
    .checkbox-label,
    .radio-label {
        font-size: 0.9rem;
    }
} 