
.privacy-page {
  padding: 60px 0;
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.privacy-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: var(--border-radius);
  padding: 80px 40px;
  margin: 40px 0 60px;
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-hero:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.privacy-hero:after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.privacy-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.privacy-hero p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
  line-height: 1.8;
  opacity: 0.9;
}

.privacy-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 50px;
  margin: 50px 0;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.privacy-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.privacy-content h2 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-content h2 i {
  color: var(--secondary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
}

.privacy-content p {
  font-size: 1.1rem;
  color: #444; /* Improved contrast */
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy-content li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #444; /* Improved contrast */
  position: relative;
  padding-left: 25px;
}

.privacy-content li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px dashed var(--primary);
}

.privacy-content a:hover, .privacy-content a:focus {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.update-date {
  background: #f0f4ff;
  padding: 10px 20px;
  border-radius: 8px;
  margin: 20px 0;
  display: inline-block;
  font-weight: 500;
  color: var(--primary);
}

.privacy-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin: 10px 0;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .privacy-content {
    padding: 40px 30px;
  }
  
  .privacy-hero {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .privacy-header h1 {
    font-size: 2.2rem;
  }
  
  .privacy-header p {
    font-size: 1.1rem;
  }
  
  .privacy-hero h2 {
    font-size: 2rem;
  }
  
  .privacy-content h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .privacy-hero {
    padding: 50px 20px;
  }
  
  .privacy-hero h2 {
    font-size: 1.8rem;
  }
  
  .privacy-content {
    padding: 30px 20px;
  }
}
