/* Privacy Policy Specific Styles */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #800000 0%, #c1121f 100%);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Main Section */
.privacy-policy-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.privacy-policy-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Policy Introduction */
.policy-intro {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  border-left: 5px solid #800000;
}

.policy-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* Policy Cards */
.policy-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(128,0,0,0.15);
}

.policy-card h2 {
  color: #800000;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-card h2 i {
  font-size: 1.3rem;
  color: #c1121f;
}

.policy-card > p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* Policy Items */
.policy-item {
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #800000;
}

.policy-item h3 {
  color: #800000;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-item h3 i {
  color: #c1121f;
  font-size: 1rem;
}

.policy-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Usage List */
.usage-list {
  list-style: none;
  padding: 0;
}

.usage-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.usage-list li:hover {
  background: #e9ecef;
}

.usage-list li i {
  color: #28a745;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.usage-list li span,
.usage-list li {
  color: #555;
  line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, #800000 0%, #c1121f 100%);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(128,0,0,0.3);
}

.contact-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background: #fff;
  color: #800000;
  border: 2px solid #fff;
}

.primary-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #800000;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px 40px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .privacy-policy-section {
    padding: 40px 15px;
  }
  
  .policy-card, .policy-intro {
    padding: 20px;
  }
  
  .policy-card h2 {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .contact-cta {
    padding: 30px 20px;
  }
  
  .contact-cta h3 {
    font-size: 1.5rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-buttons .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .policy-item, .usage-list li {
    padding: 12px;
  }
  
  .policy-item h3, .usage-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
