@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --primary: #1464dc;
  --primary-light: #3a8ef6;
  --primary-dark: #0f4da8;
  --accent: #0fd4a8;
  --accent-dark: #0cb892;
  --bg: #fafbfd;
  --bg-alt: #f0f3f8;
  --text: #191f38;
  --text-light: #5a6178;
  --text-muted: #8a90a4;
  --border: #e2e6ef;
  --white: #ffffff;
  --dark: #0e1225;
  --shadow-sm: 0 1px 3px rgba(14,18,37,0.06);
  --shadow-md: 0 4px 16px rgba(14,18,37,0.08);
  --shadow-lg: 0 8px 32px rgba(14,18,37,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1180px;
  --transition: 0.25s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--primary-dark); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.25rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  position: relative;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .logo-link img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--text);
  font-size: 0.925rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--bg-alt);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--dark);
  color: #c8ccd8;
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: #8a90a4;
  line-height: 1.65;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #8a90a4;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #c8ccd8;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #5a6178;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0e1225 0%, #1a2548 50%, #0f2a5c 100%);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 380px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-cta {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
}

.btn-cta:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, #0e1225 0%, #1a2548 50%, #0f2a5c 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

.cta-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.cta-banner .btn-cta {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

/* Header CTA */
.header-cta {
  margin-left: 0.75rem;
}

.header-cta .btn-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Footer CTA */
.footer-cta {
  margin-top: 1.25rem;
}

.footer-cta .btn {
  font-size: 0.85rem;
  padding: 0.65rem 1.35rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-body h3 a {
  color: var(--text);
}

.card-body h3 a:hover {
  color: var(--primary);
}

.card-body p {
  color: var(--text-light);
  font-size: 0.925rem;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
}

/* ========== BLOG GRID ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-grid .card:first-child {
  grid-column: span 2;
}

.blog-grid .card:first-child .card-img {
  aspect-ratio: 2/1;
}

/* ========== BLOG POST ========== */
.post-header {
  padding: 4rem 0 2rem;
  text-align: center;
}

.post-header h1 {
  font-size: 2.5rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.post-meta-sep::before {
  content: "·";
}

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.post-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.65rem;
}

.post-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
}

.post-content p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content ul, .post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.post-content img {
  border-radius: var(--radius-md);
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.post-content blockquote {
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.05rem;
  color: var(--text-light);
  font-style: italic;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.post-content table th,
.post-content table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}

.post-content table th {
  background: var(--bg-alt);
  font-weight: 600;
}

.post-content table tr:hover {
  background: var(--bg-alt);
}

.pull-quote {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
  margin: 2.5rem 0;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}

.pull-quote::before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  top: -0.25rem;
  left: 1rem;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.tip-box {
  background: #eef7f3;
  border: 1px solid #b8e0cf;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.tip-box strong {
  color: #1a7a52;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== FAQ ========== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* FAQ Style Variant: Cards Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faq-grid .faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
}

.faq-grid .faq-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.faq-grid .faq-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.faq-grid .faq-card p {
  color: var(--text-light);
  font-size: 0.925rem;
}

/* FAQ Style Variant: Timeline */
.faq-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.faq-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
  border-radius: 2px;
}

.faq-timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.faq-timeline-item::before {
  content: '';
  position: absolute;
  left: -2.65rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
}

.faq-timeline-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.faq-timeline-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========== AUTHOR BOX ========== */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 3rem 0;
}

.author-box img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.author-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.author-info .author-role {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.author-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-light);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.author-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ========== RELATED POSTS ========== */
.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.related-posts h3 {
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ========== CONTACT FORM ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 100, 220, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-details {
  padding: 2rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
}

.contact-details h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.contact-item p {
  font-size: 0.95rem;
}

/* ========== ABOUT ========== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ========== LEGAL PAGES ========== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-content .legal-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

/* ========== PAGE BANNER ========== */
.page-banner {
  background: linear-gradient(135deg, #0e1225 0%, #1a2548 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-banner h1 {
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

/* ========== FEATURED ARTICLES (Home) ========== */
.featured-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.featured-article {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all var(--transition);
}

.featured-article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.featured-article img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.featured-article h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.featured-article h4 a {
  color: var(--text);
}

.featured-article h4 a:hover {
  color: var(--primary);
}

.featured-article p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ========== REFERENCES ========== */
.references {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
}

.references h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.references ol {
  padding-left: 1.25rem;
}

.references li {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 0.4rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid .card:first-child {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .header-cta {
    display: none;
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content p {
    margin: 0 auto 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid .card:first-child {
    grid-column: span 1;
  }
  
  .featured-articles {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 1.85rem;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .featured-article {
    flex-direction: column;
  }
  
  .featured-article img {
    width: 100%;
    height: 160px;
  }
}
