.header-section{
  width: 100%;
  height: 420px;
  background-image: url('/wp-content/themes/Archive/assets/images/dark-blurred-color-gradient-grainy-background-teal.png');
  background-size: cover;
  background-position: center;
  overflow: hidden !important;
}

/* Section Styling */
.about-section {
  /* background: linear-gradient(135deg, #003C50 0%, #00C2A8 100%); */
  background-color: #fff;
  /* color: rgba(255,255,255,.95); */
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Paragraph Style */
.about-container p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}


/* 
  create your profile
*/
:root{
  --card-bg:#004050;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.75);
  --primary:#00C2A8;
  --radius:12px;
}

.onboarding{ padding:0 20px 20px; background:#fff; }
.wrap{ max-width:1180px; margin:0 auto; }

.section-title{
  font-size:25px; font-weight:500; margin-bottom:28px; color:#111;
}

/* 2 x 2 grid (stacks on mobile) */
.card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  align-items:stretch;
}

/* Card */
.card{
  position:relative;
  background:var(--card-bg);
  color:var(--text);
  padding:24px;
  border-radius:var(--radius);
  overflow:hidden;

  /* layout to pin footer */
  display:flex;
  flex-direction:column;
  gap:14px;                 /* consistent spacing between blocks */
  min-height:260px;         /* optional: make rows feel even */
}

/* big watermark number */
.card::before{
  content:attr(data-step);
  position:absolute; top:12px; left:12px;
  font-size:180px; font-weight:700; line-height:1;
  color:rgba(255,255,255,.08); pointer-events:none; user-select:none;
}

/* text */
.card h3{ font-size:18px; margin:0; }
.card p{ font-size:15px; line-height:1.6; margin:0; color:var(--muted); }
.card ul{ margin:0; padding-left:18px; font-size:15px; color:var(--muted); }
.card ul li{ margin:6px 0; }

/* CTA buttons */
.btn, .btn-light{
  display:inline-flex;              /* keeps width to content */
  align-items:center;
  justify-content:center;
  white-space:nowrap;               /* avoid wrapping */
  width:auto;                       /* override any global full-width rules */
  max-width:max-content;

  font-weight:600; font-size:14px;
  padding:10px 16px;
  border-radius:6px;
  text-decoration:none;
  transition:background .2s ease, transform .05s ease;
}

.btn{ background:var(--primary); color:#fff; }
.btn:hover{ background:#01b59c; transform:translateY(-1px); }

.btn-light{ background:#fff; color:#004050; }
.btn-light:hover{ background:#f0f0f0; transform:translateY(-1px); }

/* Button row (multiple CTAs) */
.btn-row{
  display:flex; gap:12px; flex-wrap:wrap;
}

/* Pin the CTA block to the bottom and keep a tidy gap above */
.card .btn,
.card .btn-row{
  margin-top:auto;        /* pushes CTAs to the bottom */
  align-self:flex-start;  /* prevents stretching */
}

/* Mobile */
@media (max-width:768px){
  .card-grid{ grid-template-columns:1fr; }
}



/* 
Business for SMEs
*/

:root{
  --feature-bg: #ebeef0;      /* light grey/blue band */
  --title: #1f2937;           /* dark heading */
  --body:  #4b5563;           /* paragraph */
  --cta:   #00C2A8;           /* TradeBridge teal */
  --cta-h: #01b59c;
  --radius-lg: 18px;
  --radius-sm: 10px;
}

/* Section band */
.feature{
  background: var(--feature-bg);
  padding: 56px 16px;
}
.feature-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

/* Two-column layout */
.feature-grid{
  display: grid;
  grid-template-columns: 1fr 1fr; /* image a touch wider */
  gap: 40px;
  align-items: center;
}

/* Media */
.feature-media{
  margin: 0;
}
.feature-media img{
  display: block;
  width: 100%;
  height: clamp(100px, 38vw, 300px);  /* responsive height */
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Content */
.feature-content h2{
  margin: 0 0 16px;
  font-size: clamp(20px, 3.2vw, 25px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--title);
}
.feature-content p{
  margin: 0 0 24px;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.75;
  color: var(--body);
  max-width: 60ch;
}

/* CTA */
.btn-cta{
  display: inline-flex;                /* width fits text */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--cta);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .2px;
  transition: background .2s ease, transform .05s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.btn-cta:hover{ background: var(--cta-h); transform: translateY(-1px); }
.btn-cta:active{ transform: translateY(0); }

/* Responsive: stack on small screens */
@media (max-width: 960px){
  .feature-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-media img{
    height: clamp(220px, 55vw, 360px);
  }
}

