/* ============================================
   250ginfo.com - Hakkımızda & İletişim Stilleri
   ============================================ */

.page-hero {
  padding: 40px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f4fdf0 40%, rgba(139, 239, 81, 0.13) 80%, rgba(139, 239, 81, 0.22) 100%);
  border-bottom: 3px solid rgba(139, 239, 81, 0.35);
  position: relative;
}

.page-hero h1 { margin-bottom: 8px; }
.page-hero p { max-width: 550px; color: var(--color-text-muted); }

/* About */
.about-section { padding: 48px 0; }

.about-content {
  max-width: 720px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.about-feature {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-bottom: 4px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  text-align: center;
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius);
  background: rgba(139, 239, 81, 0.12);
  border-bottom: 3px solid rgba(139, 239, 81, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.about-feature h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-feature p {
  font-size: 0.813rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Contact */
.contact-section { padding: 48px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-bottom: 4px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 32px;
}

.contact-form h2 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-bottom: 4px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.938rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin: 24px 0 8px;
}

.legal-content p {
  font-size: 0.938rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.938rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .about-features { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}
