/* Grey and White sections */
section#grey {
  padding: 4rem 0;
  background: #f3f2f1;
}

section#white {
  padding: 4rem 0;
  background: #fff;
}

section#grey .lgd-container,
section#white .lgd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section#grey .flex-container,
section#white .flex-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

section#grey .content-text,
section#white .content-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* GOV.UK Button override for this page */
section#grey .govuk-button,
section#white .govuk-button {
  background-color: #0b0c0c;
  color: white;
  box-shadow: 0 2px 0 #002d18;
}

section#grey .govuk-button:hover,
section#white .govuk-button:hover {
  background-color: #2b2b2b;
}

section#grey .govuk-button:active,
section#white .govuk-button:active {
  background-color: #000000;
  box-shadow: 0 0 0 #000000;
  top: 2px;
}

/* Business Skills Section with Image */
section#white.business-skills-section .flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

section#white.business-skills-section .content-text {
  flex: 1;
}

section#white.business-skills-section .image-container {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section#white.business-skills-section .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  section#grey,
  section#white {
    padding: 2rem 0;
  }
  
  section#grey .flex-container,
  section#white .flex-container {
    flex-direction: column;
    gap: 16px;
  }
  
  section#grey .content-text,
  section#white .content-text {
    font-size: 1.1rem;
  }
  
  /* Stack image below text on mobile */
  section#white.business-skills-section .flex-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  section#white.business-skills-section .image-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 200px;
  }
}

