.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%;
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

/* Content Container */
.policy-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.policy-section {
  display: flex;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}
.privacy-content-box {
  display: flex;
  padding: 0 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 0 0;
  align-self: stretch;
}
/* Title */
.policy-title {
  color: var(--Capri, #0096d6);
  font-family: Quicksand;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Date */
.policy-date {
  color: #666;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Section Headings */
h2 {
  color: var(--texto, #000);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom:0;
  margin-top:0;
}

h3 {
  color: var(--texto, #000);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom:0;
  margin-top:0;
}

/* Paragraph */
p {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
strong {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Info List */
.info-list {
  list-style: none;
  margin: 20px 0;
}

.info-list li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Links */
a {
  color: var(--Capri, #0096d6);
  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-left: 20px;
}

.bullet-list li {
  margin-bottom: 6px;
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-container {
    padding: 0 5px;
  }

  .policy-title {
    font-size: 26px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  p,
  li {
    font-size: 14px;
  }
}

/* Table Wrapper (Responsive) */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 25px 0;
}

/* 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 {
  background-color: #f8f9fb;
}

.retention-table th {
  text-align: left;
  padding: 12px 15px;
  font-size: 14px;
  color: #2b3f8f;
  border-bottom: 1px solid #e5e5e5;
}

/* Table Body */
.retention-table td {
  padding: 12px 15px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

/* Remove last border */
.retention-table tr:last-child td {
  border-bottom: none;
}

/* Secure Delete Text */
.secure-delete {
  margin-top: 20px;
  font-size: 15px;
}