/* ================================
   GLOBAL
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #17324d;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ================================
   HEADER
================================ */

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(23, 70, 111, 0.12);
  position: relative;
  z-index: 1000;
}

.header-container {
  width: 92%;
  max-width: 1450px;
  height: 105px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================================
   LOGO
================================ */

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* ================================
   DESKTOP NAV
================================ */

.navbar {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;

  color: #17466f;

  font-size: 16px;
  font-weight: 600;

  padding: 40px 0 34px;

  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 21px;

  width: 0;
  height: 2px;

  background: #12978f;

  transform: translateX(-50%);

  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #12978f;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ================================
   HAMBURGER
================================ */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: none;
  background: transparent;

  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 6px;

  padding: 0;
}

.menu-toggle span {
  width: 28px;
  height: 2px;

  background: #17466f;

  border-radius: 10px;

  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}

/* X animation */

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================================
   TABLET / MOBILE MENU
================================ */

@media (max-width: 992px) {
  .site-header {
    position: relative;
  }

  .header-container {
    width: 90%;
    height: 92px;
  }

  .logo img {
    width: 135px;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 0;

    padding: 6px 0 22px;

    border-top: 1px solid rgba(23, 70, 111, 0.08);

    box-shadow: 0 18px 30px rgba(23, 70, 111, 0.1);

    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  .navbar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
  }

  .nav-link {
    width: min(88%, 620px);

    text-align: center;

    font-size: 17px;
    font-weight: 600;

    color: #17466f;

    padding: 19px 10px;

    border-bottom: 1px solid rgba(23, 70, 111, 0.08);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::after {
    bottom: 11px;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 48px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .header-container {
    width: 88%;
    height: 82px;
  }

  .logo img {
    width: 115px;
  }

  .navbar {
    padding: 4px 0 18px;
  }

  .nav-link {
    width: 88%;
    font-size: 16px;
    padding: 18px 8px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 26px;
  }
}

/* ================================
   FOOTER
================================ */

.site-footer {
  background: #f5f9fb;
  color: #17324d;
  margin-top: 80px;

  border-top: 1px solid rgba(23, 70, 111, 0.1);
}

.footer-container {
  width: 92%;
  max-width: 1450px;
  margin: 0 auto;

  min-height: 220px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;

  gap: 50px;

  padding: 45px 0;
}

/* ================================
   FOOTER LOGO
================================ */

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  width: 165px;
  height: auto;

  object-fit: contain;
}

/* ================================
   FOOTER INFO
================================ */

.footer-info h3 {
  margin-bottom: 14px;

  font-size: 16px;
  font-weight: 600;

  color: #15968f;

  letter-spacing: 0.3px;
}

.footer-info p,
.footer-info a {
  font-size: 15px;
  line-height: 1.8;

  color: #31506a;
}

.footer-info a {
  display: block;

  width: fit-content;

  transition: color 0.25s ease;
}

.footer-info a:hover {
  color: #15968f;
}

/* ================================
   MIDDLE - ADDRESS
================================ */

.footer-address {
  text-align: center;
}

.footer-address p {
  margin: 0 auto;
}

/* ================================
   RIGHT - CONTACT
================================ */

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  text-align: right;
}

.footer-contact h3 {
  width: 100%;
  text-align: right;
}

/* ================================
   TABLET
================================ */

@media (max-width: 992px) {
  .site-footer {
    margin-top: 70px;
  }

  .footer-container {
    width: 90%;

    grid-template-columns: 1fr 1fr;

    gap: 35px;

    padding: 42px 0;
  }

  .footer-logo {
    grid-column: 1 / -1;

    justify-content: center;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-address {
    text-align: left;
  }

  .footer-address p {
    margin: 0;
  }

  .footer-contact {
    align-items: flex-end;

    text-align: right;
  }

  .footer-contact h3 {
    text-align: right;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .site-footer {
    margin-top: 60px;
  }

  .footer-container {
    width: 88%;

    grid-template-columns: 1fr;

    text-align: center;

    gap: 28px;

    padding: 38px 0;
  }

  .footer-logo {
    grid-column: auto;

    justify-content: center;
  }

  .footer-logo img {
    width: 135px;
  }

  .footer-address {
    text-align: center;
  }

  .footer-address p {
    margin: 0 auto;
  }

  .footer-contact {
    align-items: center;

    text-align: center;
  }

  .footer-contact h3 {
    text-align: center;
  }

  .footer-info a {
    margin: 0 auto;
  }

  .footer-info h3 {
    font-size: 15px;
  }

  .footer-info p,
  .footer-info a {
    font-size: 14px;
  }
}

/* ================================
   WHO WE ARE SECTION
================================ */

.who-we-are {
  padding: 85px 0 95px;
  background: #ffffff;
}

.who-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}

/* ================================
   INTRO
================================ */

.who-intro {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  color: #15968f;
}

.who-intro h1 {
  max-width: 900px;
  margin: 0 auto 18px;

  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.2;

  color: #17466f;
  font-weight: 700;
}

.who-intro h2 {
  max-width: 850px;
  margin: 0 auto 26px;

  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;

  color: #315b7d;
  font-weight: 500;
}

.who-description {
  max-width: 1000px;
  margin: 0 auto 14px;

  font-size: 17px;
  line-height: 1.9;

  color: #526879;
}

.who-description strong {
  color: #17466f;
  font-weight: 700;
}

/* ================================
   CORE FOCUS AREAS
================================ */

.focus-wrapper {
  margin-top: 72px;
}

.focus-heading {
  text-align: center;
  margin-bottom: 38px;
}

.focus-heading .section-label {
  margin-bottom: 10px;
}

.focus-heading h2 {
  margin: 0;

  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;

  color: #17466f;
}

/* ================================
   FOCUS GRID
================================ */

.focus-grid {
  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  column-gap: 60px;
  row-gap: 28px;
}

/* ================================
   FOCUS ITEM
================================ */

.focus-card {
  position: relative;

  padding-left: 22px;

  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.focus-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 10px;

  width: 7px;
  height: 7px;

  background: #15968f;
  border-radius: 50%;
}

/* Hide old numbers */

.focus-number {
  display: none;
}

/* ================================
   FOCUS TEXT
================================ */

.focus-card h3 {
  margin: 0 0 7px;

  font-size: 19px;
  line-height: 1.45;

  color: #17466f;
  font-weight: 700;
}

.focus-card p {
  margin: 0;

  font-size: 15.5px;
  line-height: 1.75;

  color: #607284;
}

/* ================================
   TABLET
================================ */

@media (max-width: 992px) {
  .who-we-are {
    padding: 70px 0 80px;
  }

  .who-container {
    width: 90%;
  }

  .who-intro h1 {
    font-size: 39px;
  }

  .who-intro h2 {
    font-size: 21px;
  }

  .who-description {
    font-size: 16px;
  }

  .focus-wrapper {
    margin-top: 60px;
  }

  .focus-grid {
    column-gap: 40px;
    row-gap: 24px;
  }

  .focus-card h3 {
    font-size: 18px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 700px) {
  .who-we-are {
    padding: 55px 0 65px;
  }

  .who-container {
    width: 88%;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .who-intro h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .who-intro h2 {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .who-description {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
  }

  .focus-wrapper {
    margin-top: 50px;
  }

  .focus-heading {
    margin-bottom: 30px;
  }

  .focus-heading h2 {
    font-size: 28px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .focus-card {
    padding-left: 20px;
  }

  .focus-card::before {
    width: 6px;
    height: 6px;
    top: 9px;
  }

  .focus-card h3 {
    font-size: 17px;
  }

  .focus-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }
}

/* ================================
   WHO WE WORK WITH
================================ */

.work-with-section {
  padding: 100px 0;
  background: #f7fafc;
}

.work-with-container {
  width: 90%;
  max-width: 1350px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 70px;
}

/* ================================
   IMAGE
================================ */

.work-with-image {
  position: relative;

  overflow: hidden;

  border-radius: 16px;

  min-height: 580px;
}

.work-with-image img {
  position: absolute;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ================================
   CONTENT
================================ */

.work-with-content {
  max-width: 700px;
}

.work-with-content .section-label {
  margin-bottom: 10px;
}

.work-with-content h2 {
  margin-bottom: 24px;

  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.2;

  color: #17466f;
}

.work-intro,
.work-ending {
  font-size: 17px;
  line-height: 1.8;

  color: #536a7d;
}

.work-intro {
  margin-bottom: 28px;
}

.work-intro strong {
  color: #17466f;
}

/* ================================
   LIST
================================ */

.work-list {
  list-style: none;

  margin: 0 0 30px;
  padding: 0;

  display: flex;
  flex-direction: column;

  gap: 19px;
}

.work-list li {
  position: relative;

  padding-left: 22px;

  font-size: 16.5px;
  line-height: 1.65;

  color: #31506a;
}

.work-list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 10px;

  width: 7px;
  height: 7px;

  background: #15968f;
  border-radius: 50%;
}

.work-list li strong {
  color: #17466f;
}

.work-list li div>span {
  color: #60798d;
}

/* Hide old custom bullet span if still in HTML */

.work-dot {
  display: none;
}

/* ================================
   ENDING TEXT
================================ */

.work-ending {
  margin-top: 28px;
  padding-top: 24px;

  border-top: 1px solid rgba(23, 70, 111, 0.12);
}

/* ================================
   TABLET
================================ */

@media (max-width: 992px) {
  .work-with-section {
    padding: 80px 0;
  }

  .work-with-container {
    width: 90%;

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .work-with-image {
    min-height: 470px;
  }

  .work-with-content {
    max-width: 100%;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .work-with-section {
    padding: 60px 0;
  }

  .work-with-container {
    width: 88%;
    gap: 35px;
  }

  .work-with-image {
    min-height: 350px;
    border-radius: 12px;
  }

  .work-with-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .work-intro,
  .work-ending {
    font-size: 15px;
    line-height: 1.75;
  }

  .work-list {
    gap: 16px;
  }

  .work-list li {
    padding-left: 20px;

    font-size: 15px;
    line-height: 1.65;
  }

  .work-list li::before {
    width: 6px;
    height: 6px;

    top: 9px;
  }

  .work-ending {
    margin-top: 24px;
    padding-top: 22px;
  }
}

/* ================================
   HOW WE WORK WITH YOU
================================ */

.how-we-work {
  padding: 95px 0 105px;
  background: #ffffff;
}

.how-work-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ================================
   HEADING
================================ */

.how-work-heading {
  text-align: center;
  margin-bottom: 48px;
}

.how-work-heading .section-label {
  margin-bottom: 10px;
}

.how-work-heading h2 {
  margin: 0;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;

  color: #17466f;
}

/* ================================
   GRID
================================ */

.how-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* ================================
   ITEM
================================ */

.how-work-item {
  text-align: left;
}

/* ================================
   IMAGE
================================ */

.how-work-image {
  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;

  margin-bottom: 24px;
}

.how-work-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.how-work-item:hover .how-work-image img {
  transform: scale(1.03);
}

/* ================================
   TITLE
================================ */

.how-work-item h3 {
  margin: 0 0 16px;

  font-size: 27px;
  line-height: 1.3;

  color: #17466f;
  font-weight: 700;
}

/* ================================
   TEXT
================================ */

.how-work-item p {
  margin: 0;

  font-size: 16px;
  line-height: 1.8;

  color: #526a7d;
}

.how-work-item p strong {
  color: #17466f;
  font-weight: 700;
}

/* ================================
   TABLET
================================ */

@media (max-width: 1100px) {
  .how-work-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 45px 30px;
  }
}

/* ================================
   SMALL TABLET
================================ */

@media (max-width: 768px) {
  .how-we-work {
    padding: 75px 0 80px;
  }

  .how-work-container {
    width: 90%;
  }

  .how-work-heading {
    margin-bottom: 38px;
  }

  .how-work-item h3 {
    font-size: 24px;
  }

  .how-work-item p {
    font-size: 15.5px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .how-we-work {
    padding: 58px 0 65px;
  }

  .how-work-container {
    width: 88%;
  }

  .how-work-heading {
    margin-bottom: 32px;
  }

  .how-work-heading h2 {
    font-size: 28px;
  }

  .how-work-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .how-work-image {
    margin-bottom: 20px;
  }

  .how-work-item h3 {
    font-size: 23px;

    margin-bottom: 12px;
  }

  .how-work-item p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ================================
   CONTACT HERO
================================ */

.contact-hero {
  position: relative;

  padding: 110px 0 100px;

  background: linear-gradient(135deg, #f7fafc 0%, #eef6f7 100%);

  border-bottom: 1px solid rgba(23, 70, 111, 0.08);
}

.contact-hero-container {
  width: 88%;
  max-width: 1000px;

  margin: 0 auto;

  text-align: center;
}

.contact-hero .section-label {
  margin-bottom: 14px;
}

.contact-hero h1 {
  margin: 0 0 22px;

  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.15;

  color: #17466f;

  font-weight: 700;
}

.contact-hero p {
  max-width: 760px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.8;

  color: #536a7d;
}

/* ================================
   TABLET
================================ */

@media (max-width: 992px) {
  .contact-hero {
    padding: 90px 0 85px;
  }

  .contact-hero-container {
    width: 90%;
  }

  .contact-hero h1 {
    font-size: 46px;
  }

  .contact-hero p {
    font-size: 17px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .contact-hero {
    padding: 70px 0 65px;
  }

  .contact-hero-container {
    width: 88%;
  }

  .contact-hero h1 {
    font-size: 34px;

    margin-bottom: 18px;
  }

  .contact-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }
}

/* ================================
   CONTACT FORM SECTION
================================ */

.contact-form-section {
  padding: 95px 0 105px;
  background: #ffffff;
}

.contact-form-container {
  width: 88%;
  max-width: 1050px;
  margin: 0 auto;
}

/* ================================
   FORM HEADING
================================ */

.contact-form-heading {
  max-width: 760px;
  margin: 0 0 42px;

  text-align: left;
}

.contact-form-heading .section-label {
  margin-bottom: 10px;
}

.contact-form-heading h2 {
  margin: 0 0 14px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;

  color: #17466f;
}

.contact-form-heading p {
  margin: 0;

  font-size: 16.5px;
  line-height: 1.75;

  color: #607284;
}

/* ================================
   FORM
================================ */

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  margin-bottom: 26px;
}

.form-group label {
  margin-bottom: 9px;

  font-size: 14px;
  font-weight: 600;

  color: #17466f;
}

/* ================================
   INPUTS
================================ */

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 15px 16px;

  border: 1px solid rgba(23, 70, 111, 0.18);
  border-radius: 8px;

  background: #ffffff;

  font-family: inherit;
  font-size: 15px;

  color: #2e465a;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa8b4;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #15968f;

  box-shadow: 0 0 0 2px rgba(21, 150, 143, 0.08);
}

/* ================================
   SUBMIT BUTTON
================================ */

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 150px;

  padding: 14px 28px;

  border: none;
  border-radius: 7px;

  background: #17466f;

  color: #ffffff;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.submit-button:hover {
  background: #15968f;
  transform: translateY(-1px);
}

/* ================================
   SUCCESS MESSAGE
================================ */

.form-success-message {
  display: none;

  margin-top: 22px;

  padding: 15px 17px;

  background: #eef8f6;

  border: 1px solid rgba(21, 150, 143, 0.2);
  border-radius: 7px;

  color: #136f69;

  font-size: 15px;
  line-height: 1.6;
}

.form-success-message.show {
  display: block;
}

/* ================================
   TABLET
================================ */

@media (max-width: 800px) {
  .contact-form-section {
    padding: 75px 0 85px;
  }

  .contact-form-container {
    width: 90%;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 20px;
  }

  .contact-form-heading {
    max-width: 100%;
    margin-bottom: 36px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .contact-form-section {
    padding: 60px 0 70px;
  }

  .contact-form-container {
    width: 88%;
  }

  .contact-form-heading {
    margin-bottom: 32px;
  }

  .contact-form-heading h2 {
    font-size: 28px;
  }

  .contact-form-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14.5px;

    padding: 14px;
  }

  .submit-button {
    width: 100%;

    padding: 14px 20px;
  }

  .form-success-message {
    font-size: 14px;
  }
}

/* ================================
   OUR IMPACT
================================ */

.impact-section {
  padding: 90px 0 100px;
  background: #ffffff;
}

.impact-container {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   HEADING
================================ */

.impact-heading {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.impact-heading .section-label {
  margin-bottom: 12px;
}

.impact-heading h1 {
  margin: 0 0 20px;

  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.2;

  color: #17466f;
  font-weight: 700;
}

.impact-heading p {
  max-width: 950px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.85;

  color: #536a7d;
}

.impact-heading p strong {
  color: #17466f;
  font-weight: 700;
}

/* ================================
   IMPACT LIST
================================ */

.impact-list {
  max-width: 1050px;
  margin: 0 auto;
}

.impact-item {
  padding: 18px 0;
}

/* ================================
   ITEM TITLE
================================ */

.impact-item h3 {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  margin: 0 0 9px;

  font-size: 21px;
  line-height: 1.45;

  color: #17466f;
  font-weight: 700;
}

.impact-check {
  flex-shrink: 0;

  color: #15968f;

  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

/* ================================
   ITEM TEXT
================================ */

.impact-item p {
  margin: 0;
  padding-left: 33px;

  font-size: 16.5px;
  line-height: 1.8;

  color: #5d7283;
}

/* ================================
   SPACING BETWEEN ITEMS
================================ */

.impact-item+.impact-item {
  margin-top: 16px;
}

/* ================================
   TABLET
================================ */

@media (max-width: 992px) {
  .impact-section {
    padding: 75px 0 85px;
  }

  .impact-container {
    width: 90%;
  }

  .impact-heading {
    margin-bottom: 50px;
  }

  .impact-heading h1 {
    font-size: 42px;
  }

  .impact-heading p {
    font-size: 17px;
  }

  .impact-item h3 {
    font-size: 20px;
  }

  .impact-item p {
    font-size: 16px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .impact-section {
    padding: 58px 0 68px;
  }

  .impact-container {
    width: 88%;
  }

  .impact-heading {
    margin-bottom: 40px;
  }

  .impact-heading h1 {
    font-size: 32px;
    margin-bottom: 17px;
  }

  .impact-heading p {
    font-size: 15.5px;
    line-height: 1.75;
    text-align: left;
  }

  .impact-item {
    padding: 14px 0;
  }

  .impact-item+.impact-item {
    margin-top: 12px;
  }

  .impact-item h3 {
    gap: 9px;

    font-size: 18px;
    line-height: 1.4;
  }

  .impact-check {
    font-size: 18px;
  }

  .impact-item p {
    padding-left: 27px;

    font-size: 15px;
    line-height: 1.7;
  }
}

/* ================================
   OUR VISION
================================ */

.vision-section {
  padding: 95px 0 105px;
  background: #f7fafc;
}

.vision-container {
  width: 88%;
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  align-items: center;

  gap: 70px;
}

/* ================================
   IMAGE
================================ */

.vision-image {
  width: 100%;
  overflow: hidden;
}

.vision-image img {
  width: 100%;
  height: 540px;

  display: block;

  object-fit: cover;
}

/* ================================
   CONTENT
================================ */

.vision-content {
  max-width: 650px;
}

.vision-content .section-label {
  margin-bottom: 10px;
}

.vision-content h2 {
  margin: 0 0 26px;

  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.2;

  color: #17466f;
  font-weight: 700;
}

.vision-content p {
  margin: 0 0 22px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.vision-content p:last-child {
  margin-bottom: 0;
}

.vision-content strong {
  color: #17466f;
  font-weight: 700;
}

/* ================================
   TABLET
================================ */

@media (max-width: 992px) {
  .vision-section {
    padding: 75px 0 85px;
  }

  .vision-container {
    width: 90%;

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .vision-image img {
    height: 470px;
  }

  .vision-content {
    max-width: 100%;
  }

  .vision-content h2 {
    font-size: 40px;
  }

  .vision-content p {
    font-size: 16px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .vision-section {
    padding: 60px 0 68px;
  }

  .vision-container {
    width: 88%;

    gap: 32px;
  }

  .vision-image img {
    height: 340px;
  }

  .vision-content h2 {
    font-size: 30px;

    margin-bottom: 20px;
  }

  .vision-content p {
    font-size: 15px;
    line-height: 1.75;

    margin-bottom: 18px;
  }
}

/* ================================
   OUR MISSION
================================ */

.mission-section {
  padding: 95px 0 105px;
  background: #ffffff;
}

.mission-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}

/* ================================
   HEADING
================================ */

.mission-heading {
  text-align: center;
  margin-bottom: 30px;
}

.mission-heading .section-label {
  margin-bottom: 10px;
}

.mission-heading h2 {
  margin: 0;

  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.2;

  color: #17466f;
  font-weight: 700;
}

/* ================================
   MAIN CONTENT
================================ */

.mission-content {
  max-width: 1120px;
  margin: 0 auto;
}

.mission-content p {
  margin: 0 0 20px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.mission-content p:last-child {
  margin-bottom: 0;
}

.mission-content strong {
  color: #17466f;
  font-weight: 700;
}

/* ================================
   MISSION IN ACTION
================================ */

.mission-action {
  max-width: 1120px;

  margin: 60px auto 0;

  padding-top: 10px;
}

.mission-action h3 {
  display: flex;
  align-items: center;

  gap: 11px;

  margin: 0 0 18px;

  font-size: 21px;
  line-height: 1.4;

  color: #17466f;
  font-weight: 700;
}

.mission-icon {
  color: #15968f;
  font-size: 19px;
  font-weight: 700;
}

.mission-action p {
  margin: 0;

  padding-left: 30px;

  font-size: 16.5px;
  line-height: 1.8;

  color: #5b7183;
}

.mission-action strong {
  color: #17466f;
}

/* ================================
   TABLET
================================ */

@media (max-width: 992px) {
  .mission-section {
    padding: 75px 0 85px;
  }

  .mission-container {
    width: 90%;
  }

  .mission-heading h2 {
    font-size: 40px;
  }

  .mission-content p {
    font-size: 16px;
  }

  .mission-action {
    margin-top: 50px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .mission-section {
    padding: 60px 0 68px;
  }

  .mission-container {
    width: 88%;
  }

  .mission-heading {
    text-align: left;
    margin-bottom: 24px;
  }

  .mission-heading h2 {
    font-size: 30px;
  }

  .mission-content p {
    font-size: 15px;
    line-height: 1.75;

    margin-bottom: 17px;
  }

  .mission-action {
    margin-top: 42px;
  }

  .mission-action h3 {
    font-size: 18px;
    gap: 9px;
  }

  .mission-icon {
    font-size: 17px;
  }

  .mission-action p {
    padding-left: 26px;

    font-size: 15px;
    line-height: 1.7;
  }
}


/* ================================
   SERVICES HERO
================================ */

.services-hero {
  padding: 110px 0 100px;

  background: linear-gradient(135deg,
      #f7fafc 0%,
      #eef6f7 100%);

  border-bottom: 1px solid rgba(23, 70, 111, 0.08);
}

.services-hero-container {
  width: 88%;
  max-width: 1000px;

  margin: 0 auto;

  text-align: center;
}

.services-hero .section-label {
  margin-bottom: 14px;
}

.services-hero h1 {
  margin: 0 0 22px;

  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.15;

  color: #17466f;

  font-weight: 700;
}

.services-hero p {
  max-width: 820px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.8;

  color: #536a7d;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .services-hero {
    padding: 90px 0 85px;
  }

  .services-hero-container {
    width: 90%;
  }

  .services-hero h1 {
    font-size: 46px;
  }

  .services-hero p {
    font-size: 17px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .services-hero {
    padding: 70px 0 65px;
  }

  .services-hero-container {
    width: 88%;
  }

  .services-hero h1 {
    font-size: 34px;

    margin-bottom: 18px;
  }

  .services-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }
}



/* ================================
   AI CURRICULUM DESIGN
================================ */

.ai-curriculum-section {
  padding: 85px 0 95px;
  background: #ffffff;
}

.ai-curriculum-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}


/* ================================
   SECTION HEADING
================================ */

.ai-curriculum-heading {
  max-width: 1080px;
  margin: 0 0 48px;

  text-align: left;
}

.ai-curriculum-heading .section-label {
  margin-bottom: 10px;
}

.ai-curriculum-heading h2 {
  margin: 0 0 18px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;

  color: #17466f;
  font-weight: 700;
}

.ai-curriculum-heading p {
  margin: 0;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.ai-curriculum-heading strong {
  color: #17466f;
}


/* ================================
   SERVICE BLOCKS
================================ */

.ai-service-block {
  max-width: 1120px;
  margin: 0 0 46px;
}

.ai-service-block h3 {
  margin: 0 0 18px;

  font-size: 21px;
  line-height: 1.45;

  color: #17466f;
  font-weight: 700;
}

.ai-service-number {
  margin-right: 7px;

  color: #15968f;
}


/* ================================
   LISTS
================================ */

.ai-service-block ul {
  margin: 0;
  padding-left: 22px;
}

.ai-service-block li {
  margin-bottom: 14px;

  font-size: 16.5px;
  line-height: 1.75;

  color: #35546d;
}

.ai-service-block li:last-child {
  margin-bottom: 0;
}

.ai-service-block li::marker {
  color: #15968f;
}

.ai-service-block strong {
  color: #17466f;
}


/* ================================
   CLOSING
================================ */

.ai-curriculum-closing {
  max-width: 1120px;

  margin: 50px 0 0;
}

.ai-curriculum-closing p {
  margin: 0 0 16px;

  font-size: 17px;
  line-height: 1.8;

  color: #536a7d;
}

.ai-curriculum-closing .ai-highlight {
  font-size: 18px;
  font-weight: 700;

  color: #17466f;
}

.ai-curriculum-closing .ai-availability {
  margin-bottom: 0;

  color: #15968f;
  font-weight: 600;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .ai-curriculum-section {
    padding: 70px 0 80px;
  }

  .ai-curriculum-container {
    width: 90%;
  }

  .ai-curriculum-heading {
    margin-bottom: 42px;
  }

  .ai-curriculum-heading h2 {
    font-size: 36px;
  }

  .ai-curriculum-heading p {
    font-size: 16px;
  }

  .ai-service-block {
    margin-bottom: 40px;
  }

  .ai-service-block h3 {
    font-size: 20px;
  }

  .ai-service-block li {
    font-size: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .ai-curriculum-section {
    padding: 55px 0 65px;
  }

  .ai-curriculum-container {
    width: 88%;
  }

  .ai-curriculum-heading {
    margin-bottom: 34px;
  }

  .ai-curriculum-heading h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .ai-curriculum-heading p {
    font-size: 15px;
    line-height: 1.75;
  }

  .ai-service-block {
    margin-bottom: 34px;
  }

  .ai-service-block h3 {
    font-size: 18px;
    line-height: 1.45;

    margin-bottom: 16px;
  }

  .ai-service-block ul {
    padding-left: 19px;
  }

  .ai-service-block li {
    margin-bottom: 12px;

    font-size: 15px;
    line-height: 1.7;
  }

  .ai-curriculum-closing {
    margin-top: 42px;
  }

  .ai-curriculum-closing p {
    font-size: 15px;
    line-height: 1.75;
  }

  .ai-curriculum-closing .ai-highlight {
    font-size: 16.5px;
  }
}

/* ================================
   SCHOOL OWNERS & ENTREPRENEURS
================================ */

.school-owners-section {
  padding: 85px 0 95px;
  background: #f7fafc;
}

.school-owners-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}

.school-owners-container .section-label {
  margin-bottom: 10px;
}

.school-owners-container h2 {
  margin: 0 0 24px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;

  color: #17466f;
  font-weight: 700;
}

.school-owners-container p {
  max-width: 1150px;

  margin: 0 0 20px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.school-owners-container p strong {
  color: #17466f;
  font-weight: 700;
}

.school-owners-ending {
  margin-top: 26px !important;

  font-size: 18px !important;

  color: #17466f !important;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .school-owners-section {
    padding: 70px 0 80px;
  }

  .school-owners-container {
    width: 90%;
  }

  .school-owners-container h2 {
    font-size: 36px;
  }

  .school-owners-container p {
    font-size: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .school-owners-section {
    padding: 55px 0 65px;
  }

  .school-owners-container {
    width: 88%;
  }

  .school-owners-container h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .school-owners-container p {
    font-size: 15px;
    line-height: 1.75;

    margin-bottom: 17px;
  }

  .school-owners-ending {
    margin-top: 22px !important;

    font-size: 16px !important;
  }
}

/* ================================
   PRIVATE SCHOOL IN SYRIA
================================ */

.syria-school-section {
  padding: 85px 0 95px;
  background: #ffffff;
}

.syria-school-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.syria-school-heading {
  max-width: 1050px;
  margin-bottom: 38px;
}

.syria-school-heading .section-label {
  margin-bottom: 10px;
}

.syria-school-heading h2 {
  margin: 0 0 12px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.3;

  color: #17466f;
  font-weight: 700;
}

.syria-arabic-title {
  margin: 0;

  font-size: 22px;
  line-height: 1.8;

  color: #17466f;
  font-weight: 600;

  text-align: left;
  direction: rtl;

  width: fit-content;
}


/* ================================
   INTRO
================================ */

.syria-school-intro {
  max-width: 1140px;
}

.bilingual-paragraph {
  margin-bottom: 26px;
}

.bilingual-paragraph p {
  margin: 0 0 7px;

  font-size: 17px;
  line-height: 1.8;

  color: #536a7d;
}

.bilingual-paragraph strong {
  color: #17466f;
}

.bilingual-paragraph .arabic-text {
  font-size: 17px;
  line-height: 1.9;

  color: #35546d;

  text-align: left;
  direction: rtl;

  width: fit-content;
}


/* ================================
   SERVICES HEADING
================================ */

.syria-services {
  margin-top: 45px;
}

.syria-services-heading {
  margin-bottom: 25px;
}

.syria-services-heading h3 {
  margin: 0 0 7px;

  font-size: 22px;
  line-height: 1.4;

  color: #17466f;
  font-weight: 700;
}

.syria-services-heading h4 {
  margin: 0;

  font-size: 18px;
  line-height: 1.8;

  color: #17466f;
  font-weight: 600;

  text-align: left;
  direction: rtl;

  width: fit-content;
}


/* ================================
   SERVICES LIST
================================ */

.syria-services-list {
  max-width: 1000px;
}

.syria-service-item {
  position: relative;

  padding-left: 18px;

  margin-bottom: 22px;
}

.syria-service-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 10px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #15968f;
}

.syria-service-item p {
  margin: 0;
}

.english-service {
  font-size: 16.5px;
  line-height: 1.7;

  color: #35546d;
}

.arabic-service {
  margin-top: 4px !important;

  font-size: 16px;
  line-height: 1.9;

  color: #536a7d;

  direction: rtl;
  text-align: left;

  width: fit-content;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .syria-school-section {
    padding: 70px 0 80px;
  }

  .syria-school-container {
    width: 90%;
  }

  .syria-school-heading h2 {
    font-size: 36px;
  }

  .syria-arabic-title {
    font-size: 20px;
  }

  .bilingual-paragraph p {
    font-size: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .syria-school-section {
    padding: 55px 0 65px;
  }

  .syria-school-container {
    width: 88%;
  }

  .syria-school-heading {
    margin-bottom: 30px;
  }

  .syria-school-heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .syria-arabic-title {
    font-size: 18px;
    line-height: 1.7;
  }

  .bilingual-paragraph {
    margin-bottom: 22px;
  }

  .bilingual-paragraph p {
    font-size: 15px;
    line-height: 1.75;
  }

  .bilingual-paragraph .arabic-text {
    font-size: 15px;
    line-height: 1.85;
  }

  .syria-services {
    margin-top: 36px;
  }

  .syria-services-heading h3 {
    font-size: 19px;
  }

  .syria-services-heading h4 {
    font-size: 16px;
  }

  .syria-service-item {
    margin-bottom: 18px;
    padding-left: 17px;
  }

  .english-service {
    font-size: 15px;
    line-height: 1.7;
  }

  .arabic-service {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ================================
   ACCREDITATION SERVICES
================================ */

.accreditation-section {
  padding: 85px 0 95px;
  background: #f7fafc;
}

.accreditation-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.accreditation-heading {
  max-width: 1100px;
  margin-bottom: 45px;
}

.accreditation-heading .section-label {
  margin-bottom: 10px;
}

.accreditation-heading h2 {
  margin: 0 0 12px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;

  color: #17466f;
  font-weight: 700;
}

.accreditation-heading h3 {
  margin: 0 0 22px;

  font-size: 22px;
  line-height: 1.5;

  color: #315b7d;
  font-weight: 600;
}

.accreditation-heading p {
  margin: 0;

  max-width: 1100px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.accreditation-heading strong {
  color: #17466f;
}


/* ================================
   CONTENT
================================ */

.accreditation-content {
  max-width: 1120px;
}

.accreditation-content>h4,
.accreditation-offer h4 {
  margin: 0 0 20px;

  font-size: 20px;
  line-height: 1.45;

  color: #17466f;
  font-weight: 700;
}


/* ================================
   SUPPORT OPTIONS
================================ */

.accreditation-support {
  margin-bottom: 45px;
}

.support-item {
  position: relative;

  padding-left: 22px;

  margin-bottom: 26px;
}

.support-item:last-child {
  margin-bottom: 0;
}

.support-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 9px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #15968f;
}

.support-item h5 {
  margin: 0 0 6px;

  font-size: 18px;
  line-height: 1.45;

  color: #17466f;
  font-weight: 700;
}

.support-item p {
  margin: 0;

  font-size: 16.5px;
  line-height: 1.75;

  color: #536a7d;
}


/* ================================
   WE OFFER
================================ */

.accreditation-offer {
  margin-top: 10px;
}

.accreditation-offer ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.accreditation-offer li {
  position: relative;

  padding-left: 24px;

  margin-bottom: 11px;

  font-size: 16.5px;
  line-height: 1.7;

  color: #35546d;
}

.accreditation-offer li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: #15968f;
  font-weight: 700;
}


/* ================================
   ENDING
================================ */

.accreditation-ending {
  margin-top: 45px;
}

.accreditation-ending p {
  margin: 0 0 10px;

  font-size: 16.5px;
  line-height: 1.8;
}

.accreditation-mode {
  color: #17466f;
  font-weight: 600;
}

.accreditation-contact {
  color: #536a7d;
  font-style: italic;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .accreditation-section {
    padding: 70px 0 80px;
  }

  .accreditation-container {
    width: 90%;
  }

  .accreditation-heading h2 {
    font-size: 36px;
  }

  .accreditation-heading h3 {
    font-size: 20px;
  }

  .accreditation-heading p,
  .support-item p,
  .accreditation-offer li,
  .accreditation-ending p {
    font-size: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .accreditation-section {
    padding: 55px 0 65px;
  }

  .accreditation-container {
    width: 88%;
  }

  .accreditation-heading {
    margin-bottom: 35px;
  }

  .accreditation-heading h2 {
    font-size: 28px;
  }

  .accreditation-heading h3 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .accreditation-heading p {
    font-size: 15px;
    line-height: 1.75;
  }

  .accreditation-content>h4,
  .accreditation-offer h4 {
    font-size: 18px;
    margin-bottom: 17px;
  }

  .accreditation-support {
    margin-bottom: 36px;
  }

  .support-item {
    padding-left: 20px;
    margin-bottom: 22px;
  }

  .support-item::before {
    width: 6px;
    height: 6px;
    top: 8px;
  }

  .support-item h5 {
    font-size: 17px;
  }

  .support-item p {
    font-size: 15px;
    line-height: 1.7;
  }

  .accreditation-offer li {
    font-size: 15px;
    line-height: 1.7;

    padding-left: 22px;
  }

  .accreditation-ending {
    margin-top: 36px;
  }

  .accreditation-ending p {
    font-size: 15px;
    line-height: 1.7;
  }
}


/* ================================
   AI & TECHNOLOGY IN EDUCATION
================================ */

.ai-technology-section {
  padding: 85px 0 95px;
  background: #ffffff;
}

.ai-technology-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.ai-technology-heading {
  max-width: 1120px;
  margin-bottom: 38px;
}

.ai-technology-heading .section-label {
  margin-bottom: 10px;
}

.ai-technology-heading h2 {
  margin: 0 0 10px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;

  color: #17466f;
  font-weight: 700;
}

.ai-technology-heading h3 {
  margin: 0 0 18px;

  font-size: 21px;
  line-height: 1.45;

  color: #315b7d;
  font-weight: 700;
}

.ai-technology-heading p {
  margin: 0;

  max-width: 1120px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.ai-technology-heading strong {
  color: #17466f;
  font-weight: 700;
}


/* ================================
   KEY SERVICES
================================ */

.ai-technology-services {
  max-width: 1120px;
}

.ai-technology-services h4 {
  margin: 0 0 18px;

  font-size: 20px;
  line-height: 1.4;

  color: #17466f;
  font-weight: 700;
}

.ai-technology-services ul {
  margin: 0;
  padding-left: 22px;
}

.ai-technology-services li {
  margin-bottom: 13px;

  font-size: 16.5px;
  line-height: 1.75;

  color: #35546d;
}

.ai-technology-services li:last-child {
  margin-bottom: 0;
}

.ai-technology-services li::marker {
  color: #15968f;
}

.ai-technology-services strong {
  color: #17466f;
  font-weight: 700;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .ai-technology-section {
    padding: 70px 0 80px;
  }

  .ai-technology-container {
    width: 90%;
  }

  .ai-technology-heading h2 {
    font-size: 36px;
  }

  .ai-technology-heading h3 {
    font-size: 20px;
  }

  .ai-technology-heading p,
  .ai-technology-services li {
    font-size: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .ai-technology-section {
    padding: 55px 0 65px;
  }

  .ai-technology-container {
    width: 88%;
  }

  .ai-technology-heading {
    margin-bottom: 32px;
  }

  .ai-technology-heading h2 {
    font-size: 28px;
  }

  .ai-technology-heading h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .ai-technology-heading p {
    font-size: 15px;
    line-height: 1.75;
  }

  .ai-technology-services h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .ai-technology-services ul {
    padding-left: 19px;
  }

  .ai-technology-services li {
    margin-bottom: 12px;

    font-size: 15px;
    line-height: 1.7;
  }
}

/* ================================
   SCHOOL LEADERSHIP & ADMINISTRATION
================================ */

.leadership-section {
  padding: 85px 0 95px;
  background: #f7fafc;
}

.leadership-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.leadership-heading {
  max-width: 1120px;
  margin-bottom: 38px;
}

.leadership-heading .section-label {
  margin-bottom: 10px;
}

.leadership-heading h2 {
  margin: 0 0 10px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;

  color: #17466f;
  font-weight: 700;
}

.leadership-heading h3 {
  margin: 0 0 18px;

  font-size: 21px;
  line-height: 1.45;

  color: #315b7d;
  font-weight: 700;
}

.leadership-heading p {
  margin: 0;

  max-width: 1120px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.leadership-heading strong {
  color: #17466f;
  font-weight: 700;
}


/* ================================
   KEY SERVICES
================================ */

.leadership-services {
  max-width: 1120px;
}

.leadership-services h4 {
  margin: 0 0 18px;

  font-size: 20px;
  line-height: 1.4;

  color: #17466f;
  font-weight: 700;
}

.leadership-services ul {
  margin: 0;
  padding-left: 22px;
}

.leadership-services li {
  margin-bottom: 13px;

  font-size: 16.5px;
  line-height: 1.75;

  color: #35546d;
}

.leadership-services li:last-child {
  margin-bottom: 0;
}

.leadership-services li::marker {
  color: #15968f;
}

.leadership-services strong {
  color: #17466f;
  font-weight: 700;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .leadership-section {
    padding: 70px 0 80px;
  }

  .leadership-container {
    width: 90%;
  }

  .leadership-heading h2 {
    font-size: 36px;
  }

  .leadership-heading h3 {
    font-size: 20px;
  }

  .leadership-heading p,
  .leadership-services li {
    font-size: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .leadership-section {
    padding: 55px 0 65px;
  }

  .leadership-container {
    width: 88%;
  }

  .leadership-heading {
    margin-bottom: 32px;
  }

  .leadership-heading h2 {
    font-size: 28px;
  }

  .leadership-heading h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .leadership-heading p {
    font-size: 15px;
    line-height: 1.75;
  }

  .leadership-services h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .leadership-services ul {
    padding-left: 19px;
  }

  .leadership-services li {
    margin-bottom: 12px;

    font-size: 15px;
    line-height: 1.7;
  }
}

/* ================================
   TEACHER DEVELOPMENT & TRAINING
================================ */

.teacher-development-section {
  padding: 85px 0 95px;
  background: #ffffff;
}

.teacher-development-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.teacher-development-heading {
  max-width: 1100px;
  margin-bottom: 45px;
}

.teacher-development-heading .section-label {
  margin-bottom: 10px;
}

.teacher-development-heading h2 {
  margin: 0 0 14px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;

  color: #17466f;
  font-weight: 700;
}

.teacher-development-tagline {
  margin: 0;

  font-size: 18px;
  line-height: 1.8;

  color: #315b7d;
  font-style: italic;
}

.teacher-development-tagline span {
  margin-left: 8px;
  color: #315b7d;
}


/* ================================
   CONTENT
================================ */

.teacher-development-content {
  max-width: 1120px;
}

.teacher-development-content h3 {
  margin: 0 0 22px;

  font-size: 21px;
  line-height: 1.45;

  color: #17466f;
  font-weight: 700;
}

.teacher-development-content>p {
  margin: 0 0 26px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.teacher-development-content strong {
  color: #17466f;
  font-weight: 700;
}


/* ================================
   KEY SERVICES
================================ */

.teacher-development-content h4 {
  margin: 0 0 18px;

  font-size: 20px;
  line-height: 1.4;

  color: #17466f;
  font-weight: 700;
}

.teacher-development-content ul {
  margin: 0;
  padding-left: 22px;
}

.teacher-development-content li {
  margin-bottom: 14px;

  font-size: 16.5px;
  line-height: 1.75;

  color: #35546d;
}

.teacher-development-content li:last-child {
  margin-bottom: 0;
}

.teacher-development-content li::marker {
  color: #15968f;
}

.teacher-development-content li strong {
  color: #17466f;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .teacher-development-section {
    padding: 70px 0 80px;
  }

  .teacher-development-container {
    width: 90%;
  }

  .teacher-development-heading h2 {
    font-size: 36px;
  }

  .teacher-development-tagline {
    font-size: 17px;
  }

  .teacher-development-content h3 {
    font-size: 20px;
  }

  .teacher-development-content>p,
  .teacher-development-content li {
    font-size: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .teacher-development-section {
    padding: 55px 0 65px;
  }

  .teacher-development-container {
    width: 88%;
  }

  .teacher-development-heading {
    margin-bottom: 34px;
  }

  .teacher-development-heading h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .teacher-development-tagline {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .teacher-development-tagline span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .teacher-development-content h3 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .teacher-development-content>p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 23px;
  }

  .teacher-development-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .teacher-development-content ul {
    padding-left: 19px;
  }

  .teacher-development-content li {
    margin-bottom: 12px;

    font-size: 15px;
    line-height: 1.7;
  }
}


/* ================================
   DELIVERY OPTIONS
================================ */

.delivery-options-section {
  padding: 85px 0 95px;
  background: #f7fafc;
}

.delivery-options-container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}

.delivery-options-container .section-label {
  margin-bottom: 10px;
}

.delivery-options-container h2 {
  margin: 0 0 24px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;

  color: #17466f;
  font-weight: 700;
}

.delivery-options-container p {
  max-width: 1150px;

  margin: 0 0 20px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}

.delivery-options-container strong {
  color: #17466f;
  font-weight: 700;
}

.delivery-support-text {
  color: #35546d !important;
  font-weight: 600;
}


/* ================================
   PLATFORM LOGOS
================================ */

.delivery-platforms {
  margin-top: 42px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 34px;

  flex-wrap: wrap;
}

.platform-item {
  width: 145px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  padding: 12px;
}

.platform-item img {
  max-width: 100%;
  max-height: 76px;

  width: auto;
  height: auto;

  object-fit: contain;
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .delivery-options-section {
    padding: 70px 0 80px;
  }

  .delivery-options-container {
    width: 90%;
  }

  .delivery-options-container h2 {
    font-size: 36px;
  }

  .delivery-options-container p {
    font-size: 16px;
  }

  .delivery-platforms {
    gap: 24px;
  }

  .platform-item {
    width: 130px;
    height: 90px;
  }

  .platform-item img {
    max-height: 66px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .delivery-options-section {
    padding: 55px 0 65px;
  }

  .delivery-options-container {
    width: 88%;
  }

  .delivery-options-container h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .delivery-options-container p {
    font-size: 15px;
    line-height: 1.75;
  }

  .delivery-platforms {
    margin-top: 32px;

    justify-content: center;

    gap: 16px;
  }

  .platform-item {
    width: 100px;
    height: 75px;

    padding: 8px;
  }

  .platform-item img {
    max-height: 55px;
  }
}

/* ================================
   BOOK A SERVICE
================================ */

.book-service-section {
  padding: 90px 0 100px;
  background: #ffffff;
}

.book-service-container {
  width: 88%;
  max-width: 1100px;
  margin: 0 auto;

  text-align: left;
}

.book-service-container .section-label {
  margin-bottom: 10px;
}

.book-service-container h2 {
  margin: 0 0 16px;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;

  color: #17466f;
  font-weight: 700;
}

.book-service-container h3 {
  margin: 0 0 18px;

  font-size: 22px;
  line-height: 1.4;

  color: #315b7d;
  font-weight: 600;
}

.book-service-container p {
  max-width: 980px;

  margin: 0 0 28px;

  font-size: 17px;
  line-height: 1.85;

  color: #536a7d;
}


/* ================================
   BUTTON
================================ */

.book-service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  background: #17466f;

  color: #ffffff;

  font-size: 15px;
  font-weight: 600;

  border-radius: 7px;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.book-service-button:hover {
  background: #15968f;
  transform: translateY(-1px);
}


/* ================================
   TABLET
================================ */

@media (max-width: 992px) {

  .book-service-section {
    padding: 75px 0 85px;
  }

  .book-service-container {
    width: 90%;
  }

  .book-service-container h2 {
    font-size: 36px;
  }

  .book-service-container h3 {
    font-size: 20px;
  }

  .book-service-container p {
    font-size: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .book-service-section {
    padding: 60px 0 70px;
  }

  .book-service-container {
    width: 88%;
  }

  .book-service-container h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .book-service-container h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .book-service-container p {
    font-size: 15px;
    line-height: 1.75;

    margin-bottom: 24px;
  }

  .book-service-button {
    width: 100%;

    padding: 14px 20px;
  }
}