/* Style.css - Custom Modern Magazine Style Design System for BosLife */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Color Palette (Flat design with bright accent colors) */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  
  --accent-cyan: #06b6d4;
  --accent-violet: #8b5cf6;
  --accent-orange: #f59e0b;
  --accent-cyan-hover: #0891b2;
  --accent-violet-hover: #7c3aed;
  
  --border-light: #e2e8f0;
  --border-dark: #334155;
  --border-accent: rgba(139, 92, 246, 0.2);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

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

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.thin-line {
  border: 0;
  border-top: 1px solid var(--border-light);
  margin: 32px 0;
}

.thin-line-dark {
  border: 0;
  border-top: 1px solid var(--border-dark);
  margin: 32px 0;
}

/* Header & Navigation */
header {
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-violet);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Free Trial Banner */
.top-banner {
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan));
  color: var(--text-light);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.top-banner a {
  text-decoration: underline;
  margin-left: 8px;
}

/* Hero Section (Magazine Editorial layout) */
.hero-section {
  padding: 48px 0;
  background: var(--bg-secondary);
}

.hero-main-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text-dark), #3b0764);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Editorial 3-column Grid */
.editorial-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.hero-col {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.hero-col-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--text-dark);
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Left: Brand Advantages */
.advantage-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.advantage-item:last-child {
  margin-bottom: 0;
}

.advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.advantage-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.advantage-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Center: Featured Offer & CTAs */
.hero-center-box {
  text-align: center;
  justify-content: space-between;
  border: 2px solid var(--accent-violet);
  position: relative;
}

.hero-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-violet);
  color: var(--text-light);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-center-promo {
  margin: 16px 0;
}

.hero-price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-violet);
  margin-bottom: 8px;
}

.hero-price-tag span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Buttons System */
.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

/* Button 1: Main Highlight (Shimmer effect) */
.btn-primary-highlight {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
  color: var(--text-light);
  border: none;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-highlight::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  100% { transform: translate(100%, 100%) rotate(30deg); }
}

.btn-primary-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

/* Button 2: Outlined Anchor */
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--text-dark);
}

/* Button 3: Trust Anchor */
.btn-trust {
  background: var(--bg-secondary);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-trust:hover {
  background: var(--border-light);
}

/* Hero Right: News Feed / Latest Articles */
.news-feed {
  list-style: none;
}

.news-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-light);
}

.news-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-date {
  font-size: 0.75rem;
  color: var(--accent-violet);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.news-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.news-title:hover {
  color: var(--accent-violet);
}

/* Features Grid */
.features-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-subtitle {
  color: var(--accent-violet);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-cyan);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 182, 212, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.08);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-card:nth-child(even) .feature-icon-wrapper {
  background: rgba(139, 92, 246, 0.08);
  color: var(--accent-violet);
}

.feature-card:nth-child(even)::before {
  background: var(--accent-violet);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Grid (Data Density Grid) */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.table-responsive-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  background: var(--bg-primary);
  margin-bottom: 40px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.pricing-table th, .pricing-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-table th {
  background: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-table tr:hover td {
  background: rgba(248, 250, 252, 0.5);
}

.pricing-table th:first-child, .pricing-table td:first-child {
  font-weight: 600;
  font-size: 1.05rem;
  background: var(--bg-secondary);
}

.plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-violet);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.spec-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.spec-yes {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
}

.spec-premium {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-violet);
}

.pricing-table .btn-buy {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
  color: var(--text-light);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  display: inline-block;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pricing-table .btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Articles Section (Magazine style card grid) */
.articles-section {
  padding: 80px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.article-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-violet);
}

.article-img-fallback {
  height: 180px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent-violet);
  border-bottom: 1px solid var(--border-light);
}

.article-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.article-tag {
  color: var(--accent-violet);
  font-weight: 600;
  text-transform: uppercase;
}

.article-card-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-dark);
}

.article-card-title a:hover {
  color: var(--accent-violet);
}

.article-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-more-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-violet);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.article-more-btn:hover {
  gap: 10px;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 0 solid var(--border-light);
}

.faq-item.active {
  border-color: var(--accent-violet);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 24px;
  border-top-width: 1px;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-dark), #1e1b4b);
  color: var(--text-light);
  text-align: center;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-box h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.newsletter-box p {
  color: var(--text-light-muted);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: 2px solid var(--accent-cyan);
}

.newsletter-form button {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  border: none;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #22d3ee;
  transform: translateY(-1px);
}

/* App Badges Component */
.app-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  text-align: left;
}

.badge-btn i {
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

.badge-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light-muted);
}

/* Footer & PBN Links */
footer {
  background: var(--bg-dark);
  color: var(--text-light-muted);
  padding: 64px 0 100px 0; /* Add bottom padding for sticky button */
  border-top: 1px solid var(--border-dark);
  font-size: 0.9rem;
}

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

.footer-col h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--text-light);
}

.pbn-links-area {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.pbn-links {
  display: flex;
  gap: 24px;
}

.pbn-links a {
  font-weight: 500;
  color: var(--text-light-muted);
  text-decoration: underline;
}

.pbn-links a:hover {
  color: var(--accent-cyan);
}

/* Mobile Sticky CTA Button */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-dark);
  padding: 12px 24px;
  z-index: 99;
  display: none;
  justify-content: center;
}

.sticky-cta-bar .btn-sticky {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
  color: var(--text-light);
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Article Page Layout Styling */
.article-page {
  padding: 48px 0;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-violet);
  margin-bottom: 24px;
}

.back-btn:hover {
  transform: translateX(-4px);
}

.article-header {
  margin-bottom: 40px;
}

.article-header-meta {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-hero-banner {
  height: 350px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--accent-violet);
  margin-bottom: 48px;
  border: 1px solid var(--border-light);
}

.article-body-layout {
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 48px;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
}

.article-body h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px 0;
  color: var(--text-dark);
}

.article-body h3 {
  font-size: 1.35rem;
  margin: 32px 0 16px 0;
  color: var(--text-dark);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body ul, .article-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 12px;
}

.article-body strong {
  color: var(--text-dark);
}

.article-cta-box {
  background: var(--bg-secondary);
  border: 2px solid var(--accent-violet);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}

.article-cta-box h3 {
  margin-bottom: 12px;
}

.article-cta-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.sidebar-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  position: sticky;
  top: 96px;
}

.sidebar-title {
  font-size: 1.1rem;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--text-dark);
  padding-bottom: 8px;
  text-transform: uppercase;
}

.sidebar-ul {
  list-style: none;
}

.sidebar-ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.sidebar-ul a {
  display: block;
}

.sidebar-ul a:hover {
  color: var(--accent-violet);
}

/* Contextual Anchor Links styling in article body */
.article-body a.context-link {
  color: var(--accent-violet);
  font-weight: 600;
  text-decoration: underline;
}

.article-body a.context-link:hover {
  color: var(--accent-cyan);
}

/* Tablet and Mobile Responsive Overrides */
@media (max-width: 1024px) {
  .editorial-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-main-title {
    font-size: 2.25rem;
  }
  
  .article-body-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar-card {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  
  .nav-links {
    gap: 16px;
    font-size: 0.9rem;
  }
  
  .btn-stack {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .sticky-cta-bar {
    display: flex;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pbn-links-area {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .pbn-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}
