.privacy-hero {
  background: linear-gradient(90deg, #d42db2, #7e3af2);
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.privacy-hero h1 {
  font-size: 48px;
  font-weight: bold;
}

.privacy-hero .last-updated {
  font-size: 18px;
  margin-top: 10px;
  position: relative;
}

.privacy-hero .last-updated::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  background: #fff;
  border-radius: 2px;
}

.privacy-content .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacy-content .intro {
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
  border-left: 4px solid #e91e63;
  padding-left: 12px;
}

.policy-section {
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  background: #f9f9f9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-section h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.policy-section ul {
  padding-left: 18px;
}

.policy-section ul li {
  margin-bottom: 8px;
}

.purple {
  background: #f4e9fd;
}

.blue {
  background: #e8f0fe;
}

.green {
  background: #e2f9eb;
}

.orange {
  background: #fef1e1;
}

.data-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.data-column {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}

.data-uses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.data-uses li {
  padding-left: 20px;
  position: relative;
}



.data-protection {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.protection-item {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.protection-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  background: #d9f1e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0f5132;
}

.privacy-rights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.privacy-rights div {
  border-left: 4px solid orange;
  padding-left: 12px;
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 32px;
  }

  .policy-section {
    padding: 20px;
  }

  .protection-item {
    flex: 1 1 100%;
  }

  .data-columns {
    flex-direction: column;
  }
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a7954;
}

.contact-header p {
    font-size: 18px;
    color: #555;
}
.terms-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}