.privacy-card {
  color: white;
  border-radius: 16px;
  padding: 32px 20px 32px 20px;
  text-align: center;
  margin: 0 auto 24px auto;
  max-width: 900px;
}

.update-badge {
  display: inline-block;
  background: white;
  color: #a83232;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.privacy-title {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-bottom: 12px;
}

.privacy-desc {
  font-size: 16px;
  color: white;
  margin-bottom: 24px;
}

.privacy-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.feature {
  background: white;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #a83232;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.feature i {
  font-size: 18px;
}

/* Privacy Info Columns */
.privacy-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto;
  color: white;
}

.info-column {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.info-column i {
  font-size: 28px;
  color: white;
  margin-bottom: 10px;
  display: block;
}

.info-column h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.info-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-column ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.info-column ul li {
  color: white;
  font-size: 15px;
  padding: 4px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.info-column ul li::before {
  content: "•";
  font-weight: bold;
  display: inline-block;
  width: 12px;
  margin-right: 6px;
}
.data-security {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}

.data-security h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: white;
  margin-bottom: 40px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.security-item {
  text-align: center;
}

.security-item i {
  font-size: 32px;
  color: #e65b5b;
  margin-bottom: 12px;
  display: inline-block;
}

.security-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.security-item p {
  font-size: 15px;
  color: white;
  line-height: 1.5;
}
.section {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.section p {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.rights-grid div {
  padding: 20px;
}

.rights-grid img {
    width: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.rights-grid h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.rights-grid p {
  font-size: 14px;
  color: white;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: left;
  margin-top: 50px;
}

.policy-grid h4 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 8px;
}

.policy-grid p {
  font-size: 14px;
  color: white;
}

.contact-box {
  background-color: #fdeeee;
  padding: 30px;
  margin-top: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  background-color: #e63946;
  padding: 15px;
  border-radius: 8px;
}

.contact-icon img {
  width: 30px;
}

.contact-content h3 {
  color: #8b2d2d;
  margin: 0;
  font-size: 18px;
}

.contact-content p {
  font-size: 14px;
  color: #555;
  margin: 5px 0 15px;
}

.contact-btn {
  display: inline-block;
  background-color: #e63946;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.contact-btn:hover {
  background-color: #d62828;
}