/* SOZLESME PAGES SPECIFIC STYLES */

/*---------------------------------------
  PDF-STYLE DOCUMENT HEADER - BAŞLANGIÇ
-----------------------------------------*/
.document-header {
  border: 2px solid #333;
  padding: 20px;
  margin-bottom: 30px;
  background: white;
}

.document-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.document-logo {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.document-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  text-transform: none;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.6;
  flex: 1;
  font-family: 'Arial', 'Helvetica', sans-serif;
}


/*---------------------------------------
  POLICY CONTENT - BAŞLANGIÇ
-----------------------------------------*/
.policy-content {
  padding: 80px 0;
  min-height: 100vh;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.policy-section h5 {
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.policy-section ul {
  margin-bottom: 20px;
}

.policy-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.table {
  margin-top: 20px;
  border-collapse: collapse;
}

.table thead th {
  background: #19b2c0;
  color: white;
  border: 1px solid #333;
  font-weight: 700;
  padding: 12px 15px;
  text-transform: uppercase;
  font-size: 13px;
}

.table tbody td {
  padding: 12px 15px;
  border: 1px solid #333;
  background: white;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.table tbody td strong {
  font-weight: 700;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: white;
}

/* PDF-style bordered table */
.table-bordered {
  border: 1px solid #333;
  border-collapse: collapse;
}

.table-bordered thead th {
  background: #19b2c0;
  color: white;
  border: 1px solid #333;
  font-weight: 700;
  text-transform: uppercase;
}

.table-bordered tbody td {
  border: 1px solid #333;
}

.alert {
  border: none;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
}

.alert-info {
  background: linear-gradient(135deg, rgba(25, 178, 192, 0.1), rgba(25, 178, 192, 0.05));
  border-left: 5px solid var(--primary-color);
  color: var(--dark-color);
}

.alert-info h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/*---------------------------------------
  RESPONSIVE DESIGN - BAŞLANGIÇ
-----------------------------------------*/
/* Tablet ve altı */
@media screen and (max-width: 991px) {
  .policy-content {
    padding: 60px 0;
  }

  .policy-section h3 {
    font-size: 1.3rem;
  }

  .policy-section h5 {
    font-size: 1.1rem;
  }

  .table {
    font-size: 14px;
  }

  .table thead th,
  .table tbody td {
    padding: 10px;
  }

  /* Document header responsive */
  .document-header-left {
    gap: 15px;
  }

  .document-logo {
    width: 100px;
    flex-shrink: 0;
  }

  .document-title {
    font-size: 18px;
    letter-spacing: 0.8px;
    line-height: 1.5;
  }
}

/* Mobil cihazlar */
@media screen and (max-width: 767px) {
  .policy-content {
    padding: 40px 0;
  }

  .policy-section {
    margin-bottom: 30px;
  }

  .policy-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .policy-section h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .policy-section h5 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .policy-section p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
  }

  .policy-section li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* Tablo responsive düzenlemeleri */
  .table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
  }

  .table thead {
    display: none;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }

  .table tr {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
  }

  .table tbody td {
    text-align: left;
    padding: 10px 15px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
  }

  .table tbody td:last-child {
    border-bottom: none;
  }

  .table tbody td strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
  }

  /* Bordered table özel düzenleme */
  .table-bordered {
    border: none;
  }

  .table-bordered tr {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  /* Striped table özel düzenleme */
  .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(25, 178, 192, 0.03);
  }

  /* Alert boxlar */
  .alert {
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
  }

  .alert-info h5 {
    font-size: 1rem;
  }

  /* Span ve highlight elementler */
  span[style*="background-color"] {
    display: inline-block;
    padding: 2px 4px;
    word-break: break-word;
  }

  /* Document header mobile */
  .document-header {
    padding: 15px;
  }

  .document-header-left {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .document-logo {
    width: 70px;
    flex-shrink: 0;
  }

  .document-title {
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.5;
  }
}

/* Küçük mobil cihazlar */
@media screen and (max-width: 480px) {
  .policy-content {
    padding: 30px 0;
  }

  .text-center h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }

  .policy-section h4 {
    font-size: 1rem;
  }

  .policy-section h5 {
    font-size: 0.95rem;
  }

  .policy-section p,
  .policy-section li {
    font-size: 13px;
  }

  .table {
    font-size: 12px;
  }

  .table tbody td {
    padding: 8px 12px;
  }

  .alert {
    padding: 12px;
    font-size: 13px;
  }

  .contact-call-btn,
  .contact-call-phone {
    font-size: 13px;
    padding: 10px 15px;
  }

  /* Document header smallest mobile */
  .document-header {
    padding: 12px;
  }

  .document-header-left {
    gap: 10px;
  }

  .document-logo {
    width: 60px;
    flex-shrink: 0;
  }

  .document-title {
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 1.5;
  }
}

/* Yatay scroll gerektiren tablolar için */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767px) {
  .table-responsive > .table-bordered {
    border: 0;
  }
}
/*---------------------------------------
  RESPONSIVE DESIGN - BİTİŞ
-----------------------------------------*/

/*---------------------------------------
  POLICY CONTENT - BİTİŞ
-----------------------------------------*/
