html, body {
  min-height: 100vh;
  height: 100%;
  background: #ECE6E6;
  overflow-y: auto;
}

.ccpa-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(32px, 6vw, 120px) clamp(16px, 8vw, 160px);
}

.ccpa-card {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}

.ccpa-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}

.ccpa-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(2rem, 4vw, 56px);
  color: #166874;
  font-weight: 400;
  margin: 0;
  text-transform: capitalize;
}

.ccpa-subtitle {
  font-family: Archivo, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #828282;
  font-weight: 400;
  text-align: left;
}

.ccpa-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ccpa-section-title {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #166874;
  font-weight: 700;
  margin: 32px 0 8px 0;
}

.ccpa-section-text {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #00183D;
  font-weight: 400;
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.ccpa-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
}

.ccpa-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  font-family: 'Work Sans', Helvetica, Arial, sans-serif;
  background: #00183D;
  border: 1px solid #166874;
}

.ccpa-table th, .ccpa-table td {
  padding: 20px 14px;
  border: 1px solid #166874;
  text-align: left;
  font-size: 18px;
  color: #166874;
  background: #00183D;
  font-weight: 400;
  vertical-align: middle;
}

.ccpa-table th {
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px solid #166874;
}

.ccpa-table tr:not(:last-child) td {
  border-bottom: 1px solid #166874;
}

.ccpa-table td:not(:last-child) {
  border-right: 1px solid #166874;
}

@media (max-width: 900px) {
  .ccpa-card {
    max-width: 98vw;
    padding: clamp(16px, 4vw, 32px) clamp(8px, 2vw, 16px);
  }
  .ccpa-main {
    padding: 16px 2vw;
  }
  .ccpa-table th, .ccpa-table td {
    font-size: 16px;
    padding: 16px 12px;
  }
  .ccpa-table th {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .ccpa-main {
    padding: 8px 1vw;
  }
  .ccpa-card {
    padding: 8px 1vw;
    border-radius: 10px;
  }
  .ccpa-title {
    font-size: clamp(1.2rem, 6vw, 2rem);
  }
  .ccpa-section-title {
    font-size: 1.1rem;
  }
  .ccpa-section-text {
    font-size: 1rem;
  }
  .ccpa-table th, .ccpa-table td {
    font-size: 14px;
    padding: 12px 8px;
  }
  .ccpa-table th {
    font-size: 16px;
  }
} 