/* Data Policy Page Styles */
.datapolicy {
  width: 100%;
  min-height: 100vh;
  background-color: #234fc2;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
}

.datapolicy-container {
  max-width: 900px;
  width: 100%;
  background-color: #fbf2e3;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgb(0 0 0 / 30%);
}

.datapolicy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgb(35 79 194 / 20%);
  gap: 1rem;
  flex-wrap: wrap;
}

.datapolicy-header .lang-selector .lang-toggle {
  background-color: #234fc2;
  color: #fbf2e3;
}

.datapolicy-header .lang-selector .lang-toggle:hover {
  background-color: #1a3d99;
}

.datapolicy-header .lang-selector .lang-dropdown {
  background-color: #234fc2;
}

.datapolicy-header .lang-selector .lang-option {
  color: #fbf2e3;
}

.datapolicy-header .lang-selector .lang-option:hover {
  background-color: #1a3d99;
}

.back-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #234fc2;
  text-decoration: none;
  font-family: Lexend, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.back-button:hover {
  opacity: 70%;
}

.back-button svg {
  width: 24px;
  height: 24px;
}

.datapolicy-logo {
  width: 50px;
  height: auto;
}

.datapolicy-content {
  color: #234fc2;
  font-family: Lexend, Helvetica, sans-serif;
}

.datapolicy-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #234fc2;
  margin: 0 0 2rem;
  text-align: center;
  line-height: 1.2;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #234fc2;
  margin: 0 0 1rem;
}

.policy-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #234fc2;
  margin: 1.5rem 0 0.75rem;
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  color: #234fc2;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #234fc2;
}

.policy-section a {
  color: #ed513b;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.policy-section a:hover {
  opacity: 70%;
  text-decoration: underline;
}

.info-box {
  background-color: rgb(35 79 194 / 10%);
  border-left: 4px solid #234fc2;
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 8px;
}

.info-box p {
  margin: 0;
}

.info-box strong {
  font-weight: 700;
}

.consent-info {
  background-color: rgb(237 81 59 / 10%);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.consent-info h2 {
  color: #234fc2;
}

/* Responsive Design */
@media (width <= 768px) {
  .datapolicy-container {
    padding: 2rem 1.5rem;
  }

  .datapolicy-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .datapolicy-logo {
    align-self: center;
  }

  .datapolicy-content h1 {
    font-size: 2rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }
}

@media (width <= 480px) {
  .datapolicy {
    padding: 1rem;
  }

  .datapolicy-container {
    padding: 1.5rem 1rem;
  }

  .datapolicy-content h1 {
    font-size: 1.75rem;
  }

  .policy-section h2 {
    font-size: 1.2rem;
  }
}
