/* Privacy Policy Specific Styles */

.privacy-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
  padding: 120px 0 60px;
}

.back-to-top {
  margin-bottom: 40px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4285F4;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.back-button:hover {
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.2);
}

.back-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.privacy-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}

.privacy-header {
  background: linear-gradient(135deg, #4285F4 0%, #1976D2 100%);
  color: white;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  opacity: 0.9;
}

.privacy-header * {
  position: relative;
  z-index: 2;
}

.update-date {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  font-weight: 500;
}

.privacy-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.privacy-body {
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e8f0fe;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.privacy-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  border-radius: 2px;
}

.privacy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.privacy-section li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.privacy-section li::before {
  content: '•';
  color: #4285F4;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.sub-list {
  margin-top: 15px;
  margin-left: 20px;
}

.sub-list li {
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 15px;
}

.sub-list li::before {
  content: '◦';
  color: #666;
}

.contact-info {
  background: #f8faff;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #4285F4;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info strong {
  color: #1a1a2e;
  font-weight: 700;
}

.back-to-top-link {
  text-align: center;
  padding: 40px 0;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4285F4;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.top-link:hover {
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.2);
}

.top-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-main {
    padding: 100px 0 40px;
  }

  .privacy-header {
    padding: 40px 20px;
  }

  .privacy-title {
    font-size: 1.8rem;
  }

  .privacy-body {
    padding: 40px 20px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 15px;
  }

  .contact-info {
    padding: 20px;
  }

  .back-button,
  .top-link {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .privacy-header {
    padding: 30px 15px;
  }

  .privacy-body {
    padding: 30px 15px;
  }

  .privacy-section {
    margin-bottom: 40px;
  }

  .privacy-section h2 {
    font-size: 18px;
  }

  .contact-info {
    padding: 15px;
  }

  .contact-info p {
    font-size: 14px;
  }
}