:root {
  --ink: #17202a;
  --muted: #5f6c78;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #d8dedf;
  --navy: #102a43;
  --teal: #147c7c;
  --red: #b4232a;
  --gold: #c79a3b;
  --section-dark: #172326;
  --section-gray: #444342;
  --font-title: "Poppins", Arial, Helvetica, sans-serif;
  --font-body: "Lato", Arial, Helvetica, sans-serif;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--surface);
  padding: 10px 14px;
  border: 2px solid var(--red);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif !important;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 3px solid var(--red);
  font-weight: 800;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 700;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.88rem;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif !important;
  line-height: 1.2;
}

.nav-cta {
  padding: 9px 14px;
  background: var(--red);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #111;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.82);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.52) 0%, rgba(8, 8, 8, 0.3) 54%, rgba(8, 8, 8, 0.18) 100%);
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 80px 0 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  font-family: var(--font-title);
  font-weight: 900;
}

p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span,
.hero-motto {
  color: #ff4248;
}

.hero-subtitle {
  max-width: 920px;
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  line-height: 1;
  font-family: var(--font-title);
  font-weight: 900;
}

.hero-motto {
  margin: 12px 0 0;
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  line-height: 1.05;
  font-family: var(--font-title);
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  border-color: currentColor;
  color: #fff;
}

.button.light {
  color: #fff;
}

.whatsapp-button {
  justify-self: start;
  margin-top: 22px;
  background: #25d366;
  color: #fff;
  border-color: #fff;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1db954;
}

.discipline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 32px;
}

.discipline-page-hero {
  background: var(--section-dark);
}

.discipline-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.discipline-hero-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.discipline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.discipline-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.discipline-facts article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.activity-card {
  display: grid;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.activity-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.activity-card span {
  min-height: 44px;
  display: grid;
  align-items: start;
}

.cv-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 56px;
  align-items: start;
}

.cv-block {
  margin-top: 28px;
}

.cv-block p {
  margin: 10px 0 0;
}

.dark-list li {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--red);
  box-shadow: none;
}

.plain-cert-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: #fff;
  line-height: 1.45;
}

.cv-gallery {
  display: grid;
  gap: 18px;
}

.cv-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.location-details {
  display: grid;
  gap: 10px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

.location-details a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.map-frame {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

.location-section {
  background: #3f3f3d;
}

.location-section .location-layout {
  align-items: center;
}

.location-section h2 {
  margin: 0 0 22px;
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: #fff;
}

.location-section .location-details {
  gap: 14px;
  font-size: 1.05rem;
  color: #fff;
}

.location-section .location-details a {
  font-weight: 800;
}

.location-section .map-frame {
  min-height: 360px;
  border: 0;
  overflow: hidden;
}

.location-section .map-frame iframe {
  min-height: 360px;
}

.about-section {
  background: var(--section-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.about-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.about-copy h2 span {
  color: #ff4248;
}

.about-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.about-image {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.section {
  padding: 86px 0;
}

.section:not(.hero):not(.intro-band) {
  color: #fff;
}

.section:not(.hero):not(.intro-band) p,
.section:not(.hero):not(.intro-band) .text-stack p,
.section:not(.hero):not(.intro-band) .section-head p,
.section:not(.hero):not(.intro-band) .split-feature p {
  color: rgba(255, 255, 255, 0.82);
}

.section:nth-of-type(odd):not(.hero):not(.intro-band) {
  background: var(--section-dark);
}

.section:nth-of-type(even):not(.hero):not(.intro-band) {
  background: var(--section-gray);
}

.intro-band {
  padding: 36px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.priority-grid,
.cards.three,
.booking-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.priority-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0 16px;
}

.priority-grid span {
  grid-row: span 2;
  color: var(--red);
  font-weight: 900;
}

.priority-grid h2 {
  font-size: 1.05rem;
}

.priority-grid p,
.text-stack p,
.section-head p,
.split-feature p,
.booking p,
.footer-grid p {
  color: var(--muted);
}

.two-col,
.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.text-stack {
  font-size: 1.08rem;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
}

.method-content {
  display: grid;
  gap: 22px;
  max-width: 560px;
}

.method-content h2 {
  margin: 0;
}

.method-content .text-stack {
  display: grid;
  gap: 22px;
}

.method-content .button {
  width: auto;
  min-height: 40px;
  justify-self: start;
  padding: 9px 14px;
  font-size: 0.92rem;
  line-height: 1.1;
}

.method-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  align-self: center;
  border: 1px solid rgba(216, 222, 223, 0.62);
}

.partner-intro {
  display: grid;
  gap: 28px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-logos img {
  width: auto;
  height: 92px;
  max-width: 120px;
  object-fit: contain;
}

.partner-details {
  display: grid;
  gap: 34px;
}

.partner-emas {
  display: grid;
  gap: 22px;
}

.partner-emas p {
  margin: 0;
}

.partner-emas img {
  width: min(100%, 285px);
  height: auto;
  justify-self: end;
}

@media (max-width: 640px) {
  .partner-logos {
    gap: 16px;
  }

  .partner-logos img {
    height: 76px;
    max-width: 100px;
  }

  .partner-emas img {
    justify-self: start;
  }
}

.inline-link {
  color: var(--red);
  font-weight: 800;
}

.tinted {
  background: var(--section-gray);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.compact {
  margin-bottom: 24px;
}

.card {
  min-height: 235px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.card p {
  color: rgba(255, 255, 255, 0.82);
}

.card a {
  color: #fff;
  font-weight: 800;
}

.dark {
  color: #fff;
  background: var(--section-dark);
}

.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.formation-section {
  color: #fff;
  background: var(--section-dark);
}

.anchor-offset {
  position: relative;
  top: -90px;
  display: block;
  height: 0;
  overflow: hidden;
}

.formation-head {
  max-width: 1050px;
  margin: 0 auto 34px;
  text-align: center;
}

.formation-head h2 {
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  line-height: 1.05;
}

.formation-head h2 span {
  color: #ff4248;
}

.formation-head p {
  max-width: 980px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.9);
}

.formation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.formation-tile {
  display: grid;
  gap: 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
}

.formation-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
}

.formation-tile span {
  min-height: 52px;
  display: grid;
  place-items: start center;
  line-height: 1.12;
  font-weight: 400;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  padding: 16px 18px;
  border-left: 5px solid var(--teal);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.08);
}

.media-text,
.feature-image {
  display: grid;
  gap: 22px;
}

.media-text img,
.feature-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border: 1px solid rgba(216, 222, 223, 0.62);
}

.dark .media-text img,
.dark .feature-image {
  border-color: rgba(255, 255, 255, 0.22);
}

.courses-head {
  max-width: 1120px;
  margin: 0 auto 40px;
  text-align: center;
}

.courses-head h2 {
  margin-bottom: 18px;
}

.courses-head h2 span {
  color: #ff4248;
}

.courses-head p {
  max-width: 1060px;
  margin: 5px auto 0;
  color: rgba(255, 255, 255, 0.88);
}

.course-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.course-showcase article {
  display: grid;
  gap: 6px;
  text-align: center;
}

.course-link {
  display: grid;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.course-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
}

.course-showcase h3 {
  margin: 8px 0 0;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.1;
}

.course-showcase p {
  margin: 0;
  color: #fff;
  font-weight: 400;
}

.commerce-grid {
  display: grid;
  gap: 16px;
}

.commerce-image {
  width: 100%;
  margin-top: 28px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.coming-soon-note {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  justify-self: start;
  margin: 0 0 2px;
  padding: 10px 14px;
  color: #fff !important;
  background: var(--red);
  border: 2px solid #ff4248;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
}

.commerce-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  min-height: 330px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.testimonial-card h3 {
  color: var(--red);
}

.testimonial-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.88rem;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-style: italic;
}

.seminar-section {
  color: #fff;
  background: var(--section-dark);
}

.seminar-section p {
  color: rgba(255, 255, 255, 0.78);
}

.seminar-layout {
  display: grid;
  gap: 30px;
}

.seminar-copy-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.seminar-text {
  display: grid;
  gap: 28px;
  justify-items: start;
}

.seminar-text p {
  max-width: 620px;
  margin: 0;
}

.seminar-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seminar-cta-row .button {
  min-height: 46px;
  margin-top: 0;
}

.seminar-heading {
  display: grid;
  justify-items: start;
}

.seminar-actions {
  display: grid;
  gap: 26px;
  justify-items: start;
  margin-top: 26px;
}

.seminar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.seminar-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.booking {
  background: var(--section-gray);
}

.booking-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid #b9c4c8;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
}

.privacy-consent input {
  width: auto;
  margin-top: 3px;
  flex: 0 0 auto;
}

.privacy-consent a {
  color: var(--red);
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.form-note-success {
  padding: 12px 14px;
  color: #fff !important;
  background: var(--teal);
  font-weight: 900;
}

.form-note-error {
  padding: 12px 14px;
  color: #fff !important;
  background: var(--red);
  font-weight: 900;
}

.contact-details,
.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-style: normal;
}

.contact-details {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact {
  color: var(--muted);
  gap: 4px;
  line-height: 1.25;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
}

.footer-contact .footer-email {
  font-weight: 800;
}

.site-footer {
  padding: 38px 0;
  color: #fff;
  background: #050505;
}

.footer-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.footer-menu {
  justify-self: end;
  display: grid;
  gap: 18px;
}

.social-links {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0.72;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-legal {
  display: grid;
  gap: 12px;
}

.footer-legal a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff4248;
  text-decoration: none;
  font-weight: 700;
}

.footer-legal span {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
}

.footer-legal span::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #050505;
  border-bottom: 2px solid #050505;
  transform: rotate(-45deg) translate(1px, -1px);
}

.legal-page {
  max-width: none;
  padding: 70px 0;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.legal-page section {
  margin-top: 34px;
}

.legal-document {
  color: #fff;
  background: var(--section-gray);
}

.legal-document pre {
  max-width: 980px;
  margin: 0 auto;
  white-space: pre-wrap;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    padding: 18px 20px 24px;
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .priority-grid,
  .cards.three,
  .activity-grid,
  .testimonial-grid,
  .seminar-copy-grid,
  .method-layout,
  .about-grid,
  .discipline-hero-grid,
  .discipline-facts,
  .cv-layout,
  .location-layout,
  .two-col,
  .split-feature,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .course-image-grid,
  .formation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .course-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .activity-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 760px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-logo { width: 48px; height: 48px; }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-overlay {
    background: rgba(8, 8, 8, 0.52);
  }

  .section {
    padding: 62px 0;
  }

  .course-image-grid,
  .formation-grid {
    grid-template-columns: 1fr;
  }

  .course-showcase {
    grid-template-columns: 1fr;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-menu {
    justify-self: start;
  }

  .button {
    width: 100%;
  }

  .method-content .button {
    width: auto;
  }
}
