/* ============================================
   LEGAL PAGES STYLES
   Gizlilik Politikası, Kullanım Koşulları vb.
   ============================================ */

/* Legal Page Container */
.legal-page {
  padding: 100px 0 80px;
  background: #ffffff;
  min-height: calc(100vh - 200px);
  overflow-x: hidden;
  width: 100%;
}

/* Page Subtitle */
.legal-page__subtitle {
  font-size: 1.2rem;
  color: var(--neutral-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--neutral-medium);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--neutral-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-black);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--primary-black);
  font-weight: 500;
}

.legal-page__content {
  max-width: 850px;
  margin: 0 auto;
  background: white;
  padding: 50px 60px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
}

/* Başlık */
.legal-page__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.3;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 20px;
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
}

.legal-page__update-date {
  font-size: 0.9rem;
  color: var(--neutral-medium);
  margin-bottom: 40px;
  font-style: italic;
}

/* Bölümler */
.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-of-type {
  margin-bottom: 0;
}

.legal-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
  font-family: var(--font-heading);
  letter-spacing: -0.2px;
  position: relative;
}

.legal-subsection__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-top: 32px;
  margin-bottom: 16px;
}

/* Paragraflar */
.legal-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 16px;
  text-align: left;
  font-weight: 400;
}

.legal-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: #f8f9fa;
  border-left: 3px solid #2c3e50;
  border-radius: 4px;
  font-weight: 400;
}

/* Listeler */
.legal-list {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-list li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 10px;
  position: relative;
}

.legal-list li::marker {
  color: #6c757d;
  font-weight: normal;
}

.legal-list li strong {
  color: var(--primary-black);
  font-weight: 700;
}

.legal-list ul {
  margin-top: 12px;
  padding-left: 24px;
}

.legal-list ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Info Boxes */
.legal-info-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 20px;
  margin: 20px 0;
}

.legal-info-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-top: 0;
  margin-bottom: 16px;
}

.legal-info-box p {
  margin-bottom: 12px;
}

.legal-info-box ul {
  margin-top: 12px;
}

/* Warning Box */
.legal-warning-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-left: 2px solid #6c757d;
  border-radius: 4px;
  padding: 20px;
  margin: 20px 0;
}

.legal-warning-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 12px;
}

.legal-warning-box p {
  color: #495057;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* Contact Box */
.legal-contact-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-left: 2px solid #6c757d;
  border-radius: 4px;
  padding: 20px;
  margin: 20px 0;
}

.legal-contact-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 12px;
}

.legal-contact-box p {
  color: #495057;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* Highlight */
.legal-highlight {
  background: #f8f9fa;
  border-left: 2px solid #dee2e6;
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.legal-highlight strong {
  color: #2c3e50;
}

/* Note */
.legal-note {
  font-size: 0.9rem;
  color: var(--neutral-medium);
  padding: 16px;
  background: var(--neutral-lighter);
  border-radius: 6px;
  margin-top: 16px;
}

.legal-note strong {
  color: var(--neutral-dark);
}

/* Rights Grid */
.legal-rights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.legal-right-item {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 18px;
  transition: all 0.2s ease;
}

.legal-right-item:hover {
  border-color: #adb5bd;
  background: #fff;
}

.legal-right-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-black);
  margin: 0 0 12px 0;
}

.legal-right-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neutral-dark);
  margin: 0;
}

/* Contact Info */
.legal-contact-info {
  background: var(--neutral-lighter);
  border-radius: 8px;
  padding: 32px;
  margin: 24px 0;
}

.legal-contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-black);
  margin: 0 0 20px 0;
}

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

.legal-contact-list li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--neutral-dark);
  margin-bottom: 12px;
  padding-left: 0;
}

.legal-contact-list strong {
  color: var(--primary-black);
  font-weight: 600;
}

/* Table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #dee2e6;
}

.legal-table thead {
  background: #f8f9fa;
  color: #2c3e50;
}

.legal-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0;
  border-bottom: 2px solid #dee2e6;
}

.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e9ecef;
  line-height: 1.6;
  color: #495057;
}

.legal-table tbody tr {
  transition: background 0.2s ease;
}

.legal-table tbody tr:hover {
  background: #f8f9fa;
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

/* Final Note */
.legal-section--final {
  border-top: 3px solid var(--accent-gold);
  padding-top: 32px;
}

.legal-final-note {
  background: var(--neutral-lighter);
  padding: 32px;
  border-radius: 8px;
  text-align: center;
}

.legal-final-note p {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-final-note p:last-child {
  margin-bottom: 0;
}

/* Footer Buttons */
.legal-page__footer {
  margin-top: 48px;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--neutral-border);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: var(--neutral-medium);
  color: white;
  border: none;
}

.btn-secondary:hover {
  background: var(--neutral-dark);
}

/* Links */
.legal-section a {
  color: #2196f3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: #1976d2;
  text-decoration: underline;
}

/* ============================================
   KVKK Specific Styles
   ============================================ */

/* Veri Sorumlusu Card */
.kvkk-data-controller {
  background: #f8f9fa;
  color: #2c3e50;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 24px;
  margin: 24px 0;
}

.kvkk-data-controller h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #2c3e50;
}

.kvkk-info-table {
  width: 100%;
  border-collapse: collapse;
}

.kvkk-info-table tr {
  border-bottom: 1px solid #dee2e6;
}

.kvkk-info-table tr:last-child {
  border-bottom: none;
}

.kvkk-info-table td {
  padding: 10px 0;
  color: #495057;
  font-size: 0.9rem;
}

.kvkk-label {
  font-weight: 600;
  width: 35%;
  color: #6c757d;
}

.kvkk-value {
  font-weight: 400;
  color: #2c3e50;
}

/* KVKK Data Table */
.kvkk-data-table {
  font-size: 0.9rem;
  min-width: 600px;
}

.kvkk-data-table thead {
  background: #f8f9fa;
  color: #2c3e50;
}

.kvkk-data-table td:first-child {
  font-weight: 600;
  color: var(--primary-black);
}

/* KVKK Rights Table */
.kvkk-rights-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  min-width: 600px;
}

.kvkk-rights-table thead {
  background: #f8f9fa;
  color: #2c3e50;
}

.kvkk-rights-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.kvkk-rights-table td {
  padding: 16px;
  border-bottom: 1px solid var(--neutral-border);
  vertical-align: top;
}

.kvkk-rights-table tbody tr:hover {
  background: #f8f9fa;
}

.kvkk-contact-cell {
  background: #f8f9fa;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Purpose Grid (Amaçlar) */
.kvkk-purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.kvkk-purpose-card {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 20px;
  transition: all 0.2s ease;
}

.kvkk-purpose-card:hover {
  border-color: #adb5bd;
  background: #fff;
}

.kvkk-purpose-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-black);
  margin: 0 0 16px 0;
}

.kvkk-purpose-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kvkk-purpose-card li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--neutral-dark);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.kvkk-purpose-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6c757d;
  font-weight: normal;
}

/* Application Box */
.kvkk-application-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-left: 2px solid #6c757d;
  border-radius: 4px;
  padding: 24px;
  margin: 24px 0;
}

.kvkk-application-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 16px 0;
}

.kvkk-application-box p {
  color: #495057;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.kvkk-application-box strong {
  color: #2c3e50;
}

/* Checkbox Group (Checkout için) */
.checkbox-group {
  margin: 24px 0;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--neutral-lighter);
  border-radius: 8px;
  border: 2px solid var(--neutral-border);
  transition: all 0.3s ease;
}

.checkbox-item:hover {
  border-color: var(--accent-gold);
  background: #fffbf0;
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-item label {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neutral-dark);
  cursor: pointer;
  flex: 1;
}

.checkbox-item label a {
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-item label a:hover {
  text-decoration: underline;
}

.checkbox-item.required::after {
  content: "*";
  color: var(--error-red);
  font-size: 1.2rem;
  margin-left: 4px;
}

/* ============================================
   Cookie Policy Specific Styles
   ============================================ */

/* Cookie Table */
.cookie-table {
  min-width: 600px;
}

.cookie-table code {
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: #d32f2f;
  word-break: break-word;
}

.cookie-table .badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  background: #e9ecef;
  color: #495057;
  border: 1px solid #dee2e6;
}

.badge-essential,
.badge-analytics,
.badge-preferences {
  background: #e9ecef;
  color: #495057;
  border: 1px solid #dee2e6;
}

.cookie-essential,
.cookie-analytics,
.cookie-preferences {
  background: transparent;
}

/* Cookie Type Boxes */
.cookie-type-box {
  border: 1px solid #dee2e6;
  border-left: 2px solid #6c757d;
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
  background: #f8f9fa;
}

.cookie-type-box.essential,
.cookie-type-box.analytics,
.cookie-type-box.preferences {
  background: #f8f9fa;
  border-left-color: #6c757d;
}

.cookie-type-box p {
  margin-bottom: 12px;
}

.cookie-type-box ul {
  margin-top: 12px;
}

.cookie-consent-info {
  margin-top: 16px;
  padding: 12px;
  background: white;
  border-radius: 6px;
  font-size: 0.9rem;
}

.cookie-consent-info strong {
  color: var(--primary-black);
}

/* Responsive */
@media (max-width: 992px) {
  .legal-page__content {
    padding: 50px 40px;
    margin: 0 20px;
  }
  
  .legal-page__title {
    font-size: 2.25rem;
  }
  
  .legal-section__title {
    font-size: 1.65rem;
  }
  
  .legal-rights {
    grid-template-columns: 1fr;
  }
  
  .kvkk-purpose-grid {
    grid-template-columns: 1fr;
  }
  
  .kvkk-data-table,
  .kvkk-rights-table,
  .legal-table {
    font-size: 0.9rem;
  }
  
  .cookie-table {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .legal-page {
    padding: 80px 0 60px;
  }

  .legal-page__content {
    padding: 40px 24px;
    border-radius: 12px;
    margin: 0 16px;
    overflow-x: hidden;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
  }
  
  /* Container'ı sınırla */
  .container {
    overflow-x: hidden;
    max-width: 100%;
  }

  .legal-page__title {
    font-size: 2rem;
    padding-bottom: 16px;
  }

  .legal-section__title {
    font-size: 1.5rem;
    padding-top: 20px;
  }

  .legal-subsection__title {
    font-size: 1.15rem;
    margin-top: 24px;
  }
  
  .legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }

  .legal-rights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .legal-table {
    font-size: 0.85rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .legal-table thead {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  
  .legal-table tbody {
    display: table;
    width: 100%;
  }

  .legal-table th,
  .legal-table td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
  
  .legal-table th {
    white-space: nowrap;
  }

  /* Table scroll on mobile */
  .legal-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 0 24px;
    position: relative;
  }
  
  .legal-table-wrapper::after {
    content: '→ Kaydırın';
    position: absolute;
    right: 24px;
    top: 12px;
    background: #6c757d;
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 500;
    pointer-events: none;
  }
  
  @keyframes slideHint {
    0%, 100% { transform: translateX(0); opacity: 0.8; }
    50% { transform: translateX(5px); opacity: 1; }
  }
  
  .legal-info-box,
  .legal-contact-box,
  .legal-warning-box,
  .kvkk-application-box {
    padding: 20px;
    margin: 16px 0;
  }
  
  .legal-contact-info {
    padding: 24px;
  }
  
  .kvkk-data-controller {
    padding: 24px;
  }
  
  .kvkk-info-table td {
    display: block;
    padding: 8px 0;
    width: 100% !important;
  }
  
  .kvkk-label {
    width: 100%;
    font-weight: 700;
    opacity: 1;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .kvkk-value {
    font-size: 1rem;
    padding-top: 4px;
  }
  
  .kvkk-info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 60px 0 40px;
  }
  
  .legal-page__content {
    padding: 32px 20px;
    border-radius: 8px;
    margin: 0 12px;
    overflow-x: hidden;
    max-width: 100%;
  }
  
  /* Tüm içerik elementlerini sınırla */
  .legal-section {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  .legal-section * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .legal-page__title {
    font-size: 1.65rem;
    letter-spacing: -0.3px;
    padding-bottom: 16px;
  }

  .legal-section__title {
    font-size: 1.35rem;
    padding-top: 24px;
  }

  .legal-subsection__title {
    font-size: 1.05rem;
    margin-top: 20px;
  }
  
  .legal-section p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  
  .legal-list {
    padding-left: 20px;
  }
  
  .legal-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .legal-info-box,
  .legal-contact-box,
  .legal-warning-box {
    padding: 16px;
    margin: 16px 0;
  }

  .legal-contact-info {
    padding: 20px;
  }

  .legal-page__footer {
    flex-direction: column;
    gap: 12px;
  }

  .legal-page__footer .btn {
    width: 100%;
    margin-left: 0 !important;
  }
  
  .legal-intro {
    padding: 20px;
    font-size: 1rem;
  }
  
  .legal-final-note {
    padding: 24px;
  }
  
  .kvkk-data-controller {
    padding: 20px;
  }
  
  .kvkk-data-controller h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  
  /* Cookie Type Boxes */
  .cookie-type-box {
    padding: 16px;
    margin: 16px 0;
  }
  
  .cookie-type-box h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  /* Cookie Table */
  .cookie-table {
    border: 0;
    box-shadow: none;
    width: 100%;
    min-width: unset;
    display: block;
  }
  
  .cookie-table thead {
    display: none;
  }
  
  .cookie-table tbody {
    display: block;
    width: 100%;
  }
  
  .cookie-table tr {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    box-sizing: border-box;
  }
  
  .cookie-table tr.cookie-essential,
  .cookie-table tr.cookie-analytics,
  .cookie-table tr.cookie-preferences {
    background: #f8f9fa;
    border-color: #dee2e6;
  }
  
  .cookie-table td {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px 0;
    border: 0;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .cookie-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }
  
  .cookie-table td:first-child {
    font-size: 1.05rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
  }
  
  .cookie-table td:first-child::before {
    display: none;
  }
  
  .cookie-table td:last-child {
    padding-bottom: 0;
  }
  
  .cookie-table code {
    font-size: 0.85rem;
    padding: 4px 8px;
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
  }
  
  .cookie-table .badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    display: inline-block;
  }
  
  /* KVKK Tables - Card Format on Mobile */
  .kvkk-data-table,
  .kvkk-rights-table {
    border: 0;
    box-shadow: none;
    width: 100%;
    min-width: unset;
    display: block;
    overflow: visible;
  }
  
  .kvkk-data-table thead,
  .kvkk-rights-table thead {
    display: none;
  }
  
  .kvkk-data-table tbody,
  .kvkk-rights-table tbody {
    display: block;
    width: 100%;
  }
  
  .kvkk-data-table tr,
  .kvkk-rights-table tr {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 16px;
    box-sizing: border-box;
  }
  
  .kvkk-data-table tr:hover,
  .kvkk-rights-table tr:hover {
    transform: none;
    background: #fff;
    border-color: #adb5bd;
  }
  
  .kvkk-data-table td,
  .kvkk-rights-table td {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px 0;
    border: 0;
    text-align: left;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .kvkk-data-table td::before,
  .kvkk-rights-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }
  
  .kvkk-data-table td:first-child,
  .kvkk-rights-table td:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-black);
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 12px;
  }
  
  .kvkk-data-table td:first-child::before,
  .kvkk-rights-table td:first-child::before {
    display: none;
  }
  
  .kvkk-data-table td:last-child,
  .kvkk-rights-table td:last-child {
    padding-bottom: 0;
  }
  
  /* Rowspan olan hücreleri mobilde her satırda göster */
  .kvkk-contact-cell {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #f8f9fa !important;
    padding: 16px !important;
    border-radius: 4px !important;
    margin-top: 12px !important;
    border: 1px solid #dee2e6 !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .kvkk-contact-cell::before {
    content: 'Başvuru Yöntemi' !important;
    display: block !important;
    font-weight: 600 !important;
    color: #6c757d !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 8px !important;
  }
  
  .kvkk-contact-cell strong {
    color: #2c3e50;
    word-wrap: break-word;
  }
  
  .kvkk-contact-cell br {
    display: block;
    content: '';
    margin: 4px 0;
  }
  
  /* Purpose Cards */
  .kvkk-purpose-card {
    padding: 20px;
  }
  
  .kvkk-purpose-card h4 {
    font-size: 1rem;
  }
  
  .kvkk-purpose-card li {
    font-size: 0.85rem;
  }
  
  /* Application Box */
  .kvkk-application-box {
    padding: 24px;
  }
  
  .kvkk-application-box h4 {
    font-size: 1.15rem;
  }
  
  /* Rights Items */
  .legal-right-item {
    padding: 16px;
  }
  
  .legal-right-item h4 {
    font-size: 1rem;
  }
  
  .legal-right-item p {
    font-size: 0.9rem;
  }
}
