/* style/privacy-policy.css */
.page-privacy-policy {
  background: #F4F7FB;
  color: #1F2D3D;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

.page-privacy-policy__hero-section {
  padding: 10px 20px 30px 20px;
  background: #EAF0FF;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(163, 177, 198, 0.3);
}

.page-privacy-policy__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-privacy-policy__hero-content {
  text-align: center;
  padding: 0 10px;
}

.page-privacy-policy__main-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  margin: 0 0 10px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-description {
  font-size: 1.05rem;
  color: #2C3E50;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-privacy-policy__cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-privacy-policy__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px;
}

.page-privacy-policy__intro-section {
  background: #FFFFFF;
  border-left: 6px solid #2F6BFF;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.page-privacy-policy__intro-text {
  font-size: 1.05rem;
  color: #000000;
  margin: 0;
}

.page-privacy-policy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.page-privacy-policy__info-card {
  background: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.page-privacy-policy__info-card:hover {
  box-shadow: 0 8px 25px rgba(165, 196, 255, 0.3);
}

.page-privacy-policy__card-icon {
  margin-bottom: 15px;
}

.page-privacy-policy__card-icon img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.page-privacy-policy__card-title {
  color: #2F6BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.page-privacy-policy__card-text {
  font-size: 0.95rem;
  color: #333333;
  margin: 0;
  flex-grow: 1;
}

.page-privacy-policy__cta-banner {
  background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.25);
}

.page-privacy-policy__cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-privacy-policy__cta-title {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px 0;
}

.page-privacy-policy__cta-text {
  color: #ffffff;
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 20px;
}

.page-privacy-policy__cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-privacy-policy__secondary-button {
  display: inline-block;
  background: #ffffff;
  color: #2F6BFF;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-privacy-policy__secondary-button:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .page-privacy-policy {
    max-width: 100%;
  }

  .page-privacy-policy__hero-section {
    padding: 10px 10px 20px 10px;
  }

  .page-privacy-policy__hero-container {
    width: 100%;
  }

  .page-privacy-policy__hero-image,
  .page-privacy-policy__card-icon img {
    max-width: 100%;
    height: auto;
    width: 100%;
  }

  .page-privacy-policy__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-privacy-policy__content-wrapper {
    padding: 20px 10px;
  }

  .page-privacy-policy__intro-section {
    padding: 16px;
  }

  .page-privacy-policy__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-privacy-policy__cta-button,
  .page-privacy-policy__secondary-button {
    text-align: center;
  }
}