/* ─────────────────────────────────────────────────────────
   Acres Avenue — Shared Stylesheet
   Used by: aboutus, careers, faq, guides, contactus,
            privacypolicy, termsandconditions, contentpolicy,
            marketdata
   ───────────────────────────────────────────────────────── */

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --accent: #fbbf24;
  --bg-light: #f9fafb;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --text-medium: #6b7280;
  --border-light: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page hero — gradient banner used on all content pages */
.page-hero {
  background: linear-gradient(to right, #2563eb, #43cea2);
  color: white;
  padding: 4rem 0 2rem;
  text-align: center;
  margin-top: 60px;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

section {
  padding: 4rem 0;
}

/* Section headings */
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA banner */
.cta {
  background: linear-gradient(to right, #2563eb, #43cea2);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 6rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}
