/* Auxiliary Pages CSS */

.main-content {
  padding: 2rem 0 4rem;
  min-height: calc(100vh - 200px);
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.policy-date {
  font-size: 0.9rem;
  color: #9ca3af;
  font-style: italic;
}

/* About Page Specific Styles */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.content-wrapper.reverse {
  direction: rtl;
}

.content-wrapper.reverse > * {
  direction: ltr;
}

.text-content h2 {
  font-size: 1.75rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
}

.image-content {
  display: flex;
  justify-content: center;
}

.about-image-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(45deg, #dc2626, #fbbf24);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

.mission-section {
  background: white;
  padding: 3rem 0;
  border-radius: 16px;
  margin-bottom: 3rem;
}

.values-section {
  padding: 3rem 0;
  text-align: center;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.value-card p {
  text-align: center;
  line-height: 1.8;
}

.team-section {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 16px;
}

/* Policy Pages Styles */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.policy-section h2 {
  font-size: 1.5rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #dc2626;
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.policy-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-subsection {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid #e5e7eb;
}

.contact-info {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.policy-section a {
  color: #dc2626;
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

/* Cookie Settings Button */
.cookie-settings {
  text-align: center;
  margin: 2rem 0;
}

.settings-btn {
  background: #dc2626;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.settings-btn:hover {
  background: #b91c1c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .policy-section {
    padding: 1.5rem;
  }
  
  .policy-section h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem 0 2rem;
  }
  
  .page-header {
    padding: 1.5rem 1rem;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .policy-section {
    padding: 1rem;
  }
  
  .team-section {
    padding: 2rem 1rem;
  }
}