/* Trust Center Page Styles */

.trust-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f1f33 100%);
  padding: 100px 24px 80px;
  text-align: center;
  color: white;
}

.trust-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.trust-hero h1 {
  font-family: 'Poppins', var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.trust-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Documents Section */
.trust-docs {
  padding: 80px 24px;
  background: #f8fafc;
}

.trust-docs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

.trust-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.trust-card-content {
  flex: 1;
  min-width: 0;
}

.trust-card-content h3 {
  font-family: 'Poppins', var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.trust-card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}

.trust-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-security {
  background: #dbeafe;
  color: #1e40af;
}

.badge-accessibility {
  background: #dcfce7;
  color: #166534;
}

.badge-privacy {
  background: #fef3c7;
  color: #92400e;
}

.badge-education {
  background: #fce7f3;
  color: #9d174d;
}

.badge-financial {
  background: #dbeafe;
  color: #1e40af;
}

.trust-card-download {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 500;
}

/* Contact Section */
.trust-contact {
  padding: 80px 24px;
  text-align: center;
  background: white;
}

.trust-contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.trust-contact h2 {
  font-family: 'Poppins', var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.trust-contact p {
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
}

.trust-email {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  padding: 12px 32px;
  background: #eff6ff;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.trust-email:hover {
  background: #dbeafe;
  color: #1d4ed8;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-hero {
    padding: 80px 20px 60px;
  }

  .trust-hero h1 {
    font-size: 32px;
  }

  .trust-hero p {
    font-size: 16px;
  }

  .trust-docs {
    padding: 48px 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-card {
    flex-direction: column;
    gap: 16px;
  }

  .trust-card-download {
    flex-direction: row;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
  }

  .trust-contact {
    padding: 48px 20px;
  }

  .trust-contact h2 {
    font-size: 24px;
  }

  .trust-contact p {
    font-size: 16px;
  }
}
