/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Page Background */
body {
  background-color: #ffffff;
  color: #000;
  line-height: 1.6;
}

.blue-section {
  width: 100%;
  height: 250px;
  background: #101f3c;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blue-section h1 {
  color: var(--Capri, #0096d6);
  text-align: center;
  font-family: Quicksand;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Main Section */
.policy-page {
  width: 100%;
  display: flex;
  padding: 24px 250px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.policy-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--Spacing-space-sm, 12px);
  align-self: stretch;
}
/* Title */
.policy-header-title,
.terms-header-title {
  color: var(--Capri, #0096d6);
  font-family: Quicksand;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

/* Date */
.policy-header-date {
  color: #666;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

/* Content Container */
.policy-container,
.terms-container {
  /* max-width: 900px;
  margin: auto; */

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.policy-section-IDENTIFICACIÓN {
  display: flex;
  padding: 0 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}
/* Info List */
.info-list {
  list-style: none;
  margin: 0;
  display: flex;
  /* padding: 10px; */
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
}

.info-list li {
  font-size: 15px;
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.policy-section,
.terms-section {
  display: flex;
  padding: 0 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.policy-section-overview,
.terms-section-overview {
  display: flex;
  padding: 0 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 0 0;
  align-self: stretch;
}

/* Section Headings */
.policy-section h2,
.terms-section h2,
.policy-section-IDENTIFICACIÓN h2 {
  color: var(--texto, #000);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}

.policy-section h3,
.terms-section h3 {
  color: var(--texto, #000);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

/* Paragraph */
.policy-section p,
.terms-section p,
.policy-section-IDENTIFICACIÓN p {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
strong {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Links */
.info-list a {
  color: var(--Capri, #0096d6);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.bullet-list a {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Bullet Lists */
.bullet-list {
  margin: 0 0 0 20px;
}

.bullet-list li {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-list {
  list-style: none;
}
.contact-list li {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-list a {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
/* Table Wrapper (Responsive) */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

/* Retention Table */
.retention-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #eee;
}

/* Table Header */
.retention-table thead {
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--Niebla, #eee);
}
.retention-table tbody {
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--Niebla, #eee);
}

.retention-table th {
  text-align: left;
  padding: 12px 15px;
  color: var(--Ultramar, #283c78);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Table Body */
.retention-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--Niebla, #eee);
  vertical-align: top;
  color: var(--texto, #000);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.policy-closing p {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

@media (max-width: 1200px) {
  .policy-page {
    padding: 24px 120px;
  }
}

@media (max-width: 992px) {
  .policy-page {
    padding: 24px 60px;
  }

  .blue-section {
    height: 200px;
  }

  .blue-section h1 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .policy-page {
    padding: 20px 24px;
    gap: 20px;
  }

  .blue-section {
    height: 160px;
    padding: 0 20px;
  }

  .blue-section h1 {
    font-size: 22px;
  }

  .policy-header-title,
  .terms-header-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .policy-page {
    padding: 16px;
  }

  .blue-section {
    height: 140px;
  }

  .blue-section h1 {
    font-size: 20px;
  }

  .policy-header-title,
  .terms-header-title {
    font-size: 20px;
  }

  .policy-section,
  .terms-section,
  .policy-section-IDENTIFICACIÓN {
    padding: 0 12px;
  }
}

        