.privacy-policy-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
  padding: 60px 20px 40px;
}

.policy-header {
  text-align: center;
  margin-bottom: 60px;
}

.policy-header h1 {
  font-size: 3rem;
  color: #1a5e20;
  margin-bottom: 10px;
  font-weight: 700;
}

.policy-header .last-updated {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
  font-size: 1.5rem;
  color: #1a5e20;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 3px solid #4a7c4f;
  padding-bottom: 10px;
}

.policy-section h3 {
  font-size: 1.2rem;
  color: #355639;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-section h4 {
  font-size: 1.1rem;
  color: #2d5e33;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.policy-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.policy-text strong {
  color: #1a5e20;
  font-weight: 600;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.policy-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.7;
  color: #555;
  font-size: 0.95rem;
}

.policy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: #4a7c4f;
  font-weight: bold;
  font-size: 1.1rem;
}

.important-notice {
  background: #e8f5e9;
  border-left: 4px solid #4a7c4f;
  padding: 20px;
  margin-top: 25px;
  border-radius: 8px;
}

.important-notice h4 {
  color: #1a5e20;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.important-notice .policy-list {
  margin-bottom: 0;
}

.contact-info {
  background: #f9f9f9;
  padding: 25px;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.contact-item {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  color: #333;
  display: inline-block;
  min-width: 150px;
}

.contact-item a {
  color: #4a7c4f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #1a5e20;
  text-decoration: underline;
}

.compliance-statement {
  border: 2px solid #4a7c4f;
  background: #f1f8f3;
}

.compliance-statement h2 {
  border-bottom: none;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .privacy-policy-page {
    padding: 40px 15px 20px;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-section {
    padding: 25px 20px;
  }

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

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

  .policy-text {
    font-size: 0.95rem;
  }

  .policy-list li {
    font-size: 0.9rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .contact-item strong {
    display: block;
    margin-bottom: 5px;
  }
}