* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #071b33;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  width: 100%;
  min-height: 82px;
  padding: 16px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: #ffffff;
  border-bottom: 3px solid #c99a2e;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.brand-name {
  color: #071b33;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.brand-subtitle {
  margin-top: 4px;
  color: #8b671c;
  font-size: 0.78rem;
  font-weight: 600;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navigation a {
  color: #071b33;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.navigation a:hover {
  color: #c99a2e;
}

.header-button {
  padding: 11px 18px;
  background-color: #c99a2e;
  color: #071b33;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
}

.header-button:hover {
  background-color: #e2bd63;
}

@media (max-width: 800px) {
  .site-header {
    padding: 14px 18px;
    gap: 12px;
  }

  .navigation {
    display: none;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .header-button {
    padding: 10px 13px;
    font-size: 0.8rem;
  }
}
.hero {
  min-height: calc(100vh - 85px);
  padding: 80px 6%;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 48px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 154, 46, 0.18),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #071b33 0%,
      #0b2748 60%,
      #071b33 100%
    );
}

.hero-content {
  max-width: 760px;
}

.hero-kicker {
  margin-bottom: 20px;
  color: #e2bd63;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 22px;
  max-width: 850px;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.hero-description {
  margin-bottom: 30px;
  max-width: 680px;
  color: #d9e0e8;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-buttons {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.secondary-button {
  padding: 14px 21px;
  display: inline-block;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 7px;
  transition: 0.25s ease;
}

.primary-button {
  background-color: #c99a2e;
  color: #071b33;
  border: 2px solid #c99a2e;
}

.primary-button:hover {
  background-color: #e2bd63;
  border-color: #e2bd63;
}

.secondary-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.secondary-button:hover {
  background-color: #ffffff;
  color: #071b33;
}

.hero-tagline {
  color: #e2bd63;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
}

.hero-card {
  padding: 34px;
  background-color: rgba(255, 255, 255, 0.97);
  color: #071b33;
  border-top: 5px solid #c99a2e;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.card-label {
  margin-bottom: 13px;
  color: #9b741f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 23px;
  font-size: 1.85rem;
  line-height: 1.25;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  color: #344254;
  line-height: 1.6;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c99a2e;
  font-weight: 900;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 65px 24px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-card {
    max-width: 600px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 52px 18px;
  }

  .hero h1 {
    font-size: 2.35rem;
    letter-spacing: -0.8px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    padding: 27px 23px;
    border-radius: 14px;
  }

  .hero-card h2 {
    font-size: 1.55rem;
  }
}
.about-section {
  padding: 85px 6%;
  background-color: #f8f5ee;
  color: #071b33;
}

.about-intro {
  margin-bottom: 45px;
  max-width: 720px;
}

.section-label {
  margin-bottom: 12px;
  color: #9b741f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.about-intro h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -1px;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: stretch;
  gap: 45px;
}

.about-text p {
  margin-bottom: 20px;
  color: #445064;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-highlight {
  padding: 34px;
  background-color: #071b33;
  color: #ffffff;
  border-left: 5px solid #c99a2e;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(7, 27, 51, 0.18);
}

.highlight-number {
  display: block;
  margin-bottom: 12px;
  color: #e2bd63;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.about-highlight p {
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .about-section {
    padding: 65px 24px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .about-section {
    padding: 55px 18px;
  }

  .about-intro {
    margin-bottom: 32px;
  }

  .about-highlight {
    padding: 28px 24px;
  }

  .highlight-number {
    font-size: 3.4rem;
  }
}
.services-section {
  padding: 90px 6%;
  background-color: #ffffff;
  color: #071b33;
}

.services-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 50px;
}

.services-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -1px;
}

.services-intro {
  max-width: 530px;
  color: #566276;
  font-size: 1.03rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 30px 25px;
  overflow: hidden;
  background-color: #f8f5ee;
  border: 1px solid #e6dfd1;
  border-radius: 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #c99a2e;
  box-shadow: 0 18px 40px rgba(7, 27, 51, 0.12);
}

.service-number {
  display: block;
  margin-bottom: 34px;
  color: #c99a2e;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #071b33;
  font-size: 1.28rem;
  line-height: 1.3;
}

.service-card p {
  color: #566276;
  font-size: 0.95rem;
  line-height: 1.75;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 90px;
  height: 90px;
  background-color: rgba(201, 154, 46, 0.12);
  border-radius: 50%;
}

@media (max-width: 1050px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .services-section {
    padding: 70px 24px;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .services-section {
    padding: 58px 18px;
  }

  .services-heading {
    margin-bottom: 35px;
  }

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

  .service-card {
    min-height: auto;
    padding: 27px 23px;
  }

  .service-number {
    margin-bottom: 24px;
  }
}
.training-section {
  padding: 90px 6%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 55px;
  background:
    radial-gradient(
      circle at bottom left,
      rgba(201, 154, 46, 0.16),
      transparent 35%
    ),
    #071b33;
  color: #ffffff;
}

.training-content {
  max-width: 800px;
}

.training-content .section-label {
  color: #e2bd63;
}

.training-content h2 {
  margin-bottom: 24px;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -1px;
}

.training-description {
  margin-bottom: 40px;
  max-width: 720px;
  color: #d7dee8;
  font-size: 1.04rem;
  line-height: 1.85;
}

.training-benefits {
  display: grid;
  gap: 18px;
}

.training-benefit {
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.training-benefit > span {
  color: #e2bd63;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.training-benefit h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.15rem;
}

.training-benefit p {
  color: #cbd4df;
  font-size: 0.94rem;
  line-height: 1.7;
}

.training-cta {
  position: sticky;
  top: 25px;
  padding: 38px 34px;
  background-color: #f8f5ee;
  color: #071b33;
  border-top: 6px solid #c99a2e;
  border-radius: 17px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.25);
}

.training-cta-label {
  margin-bottom: 15px;
  color: #9b741f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.training-cta h3 {
  margin-bottom: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
}

.training-cta > p:not(.training-cta-label):not(.training-tagline) {
  margin-bottom: 25px;
  color: #566276;
  line-height: 1.75;
}

.training-button {
  width: 100%;
  margin-bottom: 22px;
  padding: 15px 20px;
  display: inline-block;
  background-color: #c99a2e;
  color: #071b33;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 7px;
  transition: 0.25s ease;
}

.training-button:hover {
  background-color: #e2bd63;
}

.training-tagline {
  color: #8b671c;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .training-section {
    padding: 70px 24px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .training-cta {
    position: static;
    max-width: 650px;
  }
}

@media (max-width: 520px) {
  .training-section {
    padding: 58px 18px;
  }

  .training-description {
    margin-bottom: 32px;
  }

  .training-benefit {
    padding: 21px 18px;
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .training-cta {
    padding: 30px 24px;
    border-radius: 14px;
  }

  .training-cta h3 {
    font-size: 1.55rem;
  }
}
.why-section {
  padding: 90px 6%;
  background-color: #f8f5ee;
  color: #071b33;
}

.why-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.why-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -1px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  padding: 32px 26px;
  background-color: #ffffff;
  border-bottom: 4px solid #c99a2e;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(7, 27, 51, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(7, 27, 51, 0.14);
}

.why-card span {
  display: block;
  margin-bottom: 28px;
  color: #c99a2e;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.why-card h3 {
  margin-bottom: 15px;
  color: #071b33;
  font-size: 1.3rem;
  line-height: 1.3;
}

.why-card p {
  color: #566276;
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .why-section {
    padding: 65px 24px;
  }

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

@media (max-width: 520px) {
  .why-section {
    padding: 58px 18px;
  }

  .why-heading {
    margin-bottom: 35px;
  }

  .why-card {
    padding: 28px 23px;
  }

  .why-card span {
    margin-bottom: 22px;
  }
}
.contact-section {
  padding: 90px 6%;
  background-color: #ffffff;
  color: #071b33;
}

.contact-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.contact-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -1px;
}

.contact-heading > p:last-child {
  max-width: 720px;
  color: #566276;
  font-size: 1.04rem;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: 45px;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding: 29px 27px;
  background-color: #f8f5ee;
  border: 1px solid #e6dfd1;
  border-radius: 14px;
}

.contact-label {
  margin-bottom: 13px;
  color: #9b741f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.contact-item h3 {
  margin-bottom: 14px;
  color: #071b33;
  font-size: 1.3rem;
}

.contact-item address {
  margin-bottom: 14px;
  color: #445064;
  font-style: normal;
  line-height: 1.75;
}

.location-note {
  margin-bottom: 14px;
  color: #566276;
  line-height: 1.65;
}

.contact-item a {
  color: #8b671c;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.contact-item a:hover {
  color: #c99a2e;
}

.contact-main-link {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.2rem;
  overflow-wrap: anywhere;
}

.contact-item > p:last-child {
  color: #566276;
  line-height: 1.7;
}

.contact-cta {
  padding: 38px 34px;
  background-color: #071b33;
  color: #ffffff;
  border-top: 6px solid #c99a2e;
  border-radius: 17px;
  box-shadow: 0 22px 55px rgba(7, 27, 51, 0.2);
}

.contact-cta-label {
  margin-bottom: 15px;
  color: #e2bd63;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-cta h3 {
  margin-bottom: 18px;
  font-size: 1.9rem;
  line-height: 1.3;
}

.contact-cta > p:not(.contact-cta-label):not(.contact-tagline) {
  margin-bottom: 27px;
  color: #d4dce6;
  line-height: 1.75;
}

.contact-whatsapp-button,
.contact-email-button {
  width: 100%;
  padding: 15px 18px;
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 7px;
  transition: 0.25s ease;
}

.contact-whatsapp-button {
  margin-bottom: 13px;
  background-color: #c99a2e;
  color: #071b33;
}

.contact-whatsapp-button:hover {
  background-color: #e2bd63;
}

.contact-email-button {
  margin-bottom: 23px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.contact-email-button:hover {
  background-color: #ffffff;
  color: #071b33;
}

.contact-tagline {
  color: #e2bd63;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-section {
    padding: 70px 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-cta {
    max-width: 650px;
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding: 58px 18px;
  }

  .contact-heading {
    margin-bottom: 35px;
  }

  .contact-item {
    padding: 26px 22px;
  }

  .contact-cta {
    padding: 31px 24px;
    border-radius: 14px;
  }

  .contact-cta h3 {
    font-size: 1.6rem;
  }

  .contact-main-link {
    font-size: 1.05rem;
  }
}
.site-footer {
  padding: 70px 6% 28px;
  background-color: #041325;
  color: #ffffff;
  border-top: 4px solid #c99a2e;
}

.footer-grid {
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, 0.7fr));
  gap: 55px;
}

.footer-brand > a {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin-bottom: 20px;
  text-decoration: none;
  line-height: 1.1;
}

.footer-brand-name {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.footer-brand-subtitle {
  margin-top: 5px;
  color: #e2bd63;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-brand > p {
  max-width: 440px;
  color: #bdc8d5;
  line-height: 1.8;
}

.footer-title {
  margin-bottom: 20px;
  color: #e2bd63;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a,
.footer-contact a {
  margin-bottom: 13px;
  color: #dce3eb;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #e2bd63;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-contact > p:last-child {
  margin-top: 7px;
  color: #bdc8d5;
  line-height: 1.75;
}

.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  color: #aeb9c7;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom p:last-child {
  color: #e2bd63;
  font-style: italic;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 850px) {
  .site-footer {
    padding: 60px 24px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 52px 18px 24px;
  }

  .footer-grid {
    padding-bottom: 35px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 2px solid #071b33;
  border-radius: 7px;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  background-color: #071b33;
  border-radius: 10px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 800px) {
  .site-header {
    position: sticky;
  }

  .header-button {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background-color: #ffffff;
    border-top: 1px solid #e6dfd1;
    border-bottom: 3px solid #c99a2e;
    box-shadow: 0 18px 35px rgba(7, 27, 51, 0.16);
  }

  .navigation.is-open {
    display: flex;
  }

  .navigation a {
    padding: 15px 2px;
    border-bottom: 1px solid #e6dfd1;
  }

  .navigation a:last-child {
    border-bottom: none;
  }
}