/* Reset & Base */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: #1b1b1b;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

a {
  color: #0054a6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  padding: 4rem 0;
}

/* Header */
.site-header {
  background: #f8f9fc;
  border-bottom: 1px solid #dce0e5;
  padding: 1rem 0;
}

.header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 140px;
  width: auto;
}

.company-name {
  font-size: 3.5rem;
  font-weight: 700;
  color: #003f82;
  text-align: center;
  justify-self: center;
}

.vosb-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #003f82;
  height: 72px;
  justify-content: flex-end;
  background: none;
  padding: 0;
  border-radius: 0;
}

.vosb-badge img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

/* Hero */
.hero {
  background: #eef4fa;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  line-height: 1.75;
}

.cta-buttons a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-primary {
  background-color: #0054a6;
  color: white;
}

.btn-primary:hover {
  background-color: #003f82;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333;
}

.btn-secondary:hover {
  background-color: #cfcfcf;
}

/* Cards & Grids */
.card-grid,
.three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card,
.three-columns .column {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  text-align: left;
}

.card:hover,
.three-columns .column:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card h3,
.three-columns .column h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.three-columns .icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* CTA */
.consultation-cta {
  background: #f0f6ff;
  text-align: center;
  padding: 4rem 2rem;
}

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

.consultation-cta p {
  font-size: 1.1rem;
}

.consultation-cta .btn-primary {
  margin-top: 1rem;
}

/* Form Styles */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

form input,
form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 200px;
}

form textarea {
  height: 100px;
  resize: vertical;
  width: 100%;
  max-width: 420px;
}

form button {
  padding: 0.75rem 1.5rem;
  background-color: #0054a6;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #003f82;
}
/* Section padding */
section {
  padding-top: 4rem;   /* was probably 6rem */
  padding-bottom: 4rem;
}

/* Headings */
h1 {
  font-size: 2.2rem; /* slightly smaller */
  margin-bottom: 1rem;
}

h2, h3 {
  margin-bottom: 0.75rem;
}

/* Container spacing */
.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Card grid gap */
.card-grid {
  gap: 1.5rem; /* tighter spacing between cards */
}

/* Consultation Form Section */
.consultation-form {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Hero section special case */
.hero {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

<style>
  .LEAN-Consulting {
    scroll-margin-top: 50vh; /* Centers the element vertically */
  }
  .Digital-Transformation {
    scroll-margin-top: 50vh; /* Centers the element vertically */
  }
  .Smart-Sourcing {
    scroll-margin-top: 50vh; /* Centers the element vertically */
  }
</style>