:root {
  --red: #ed151d;
  --orange: #ff7900;
  --yellow: #ffd000;
  --green: #09a64f;
  --blue: #145db9;
  --purple: #65208c;

  --black: #111111;
  --white: #ffffff;
  --light-gray: #eeeeee;
  --gray-text: #666666;

  --header-height: 135px;
  --strip-height: 8px;
}

/* =========================
   Reset
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--black);
  font-family: "Manrope", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* =========================
   Header
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;

  background-color: var(--white);
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

/* Header Color Strip */

.header-color-strip {
  display: flex;
  width: 100%;
  height: var(--strip-height);
}

.header-color-strip span {
  flex: 1;
}

.header-color-strip .red {
  background-color: var(--red);
}

.header-color-strip .orange {
  background-color: var(--orange);
}

.header-color-strip .yellow {
  background-color: var(--yellow);
}

.header-color-strip .green {
  background-color: var(--green);
}

.header-color-strip .blue {
  background-color: var(--blue);
}

.header-color-strip .purple {
  background-color: var(--purple);
}

/* Header Container */

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: min(1450px, calc(100% - 70px));
  height: var(--header-height);
  margin: 0 auto;
}

/* Logo */

.site-logo {
  flex-shrink: 0;
  width: 270px;
}

.site-logo img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  object-position: left center;
}

/* Navigation */

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 48px;
}

.main-nav a {
  position: relative;

  display: block;
  padding: 14px 0;

  color: var(--black);

  font-size: 18px;
  font-weight: 700;

  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;
  bottom: 5px;
  left: 0;

  width: 0;
  height: 4px;

  border-radius: 30px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );

  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--purple);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* =========================
   Hamburger Menu
========================= */

.menu-toggle {
  position: relative;
  z-index: 1002;

  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  width: 46px;
  height: 46px;
  padding: 8px;
}

.menu-toggle span {
  display: block;

  width: 100%;
  height: 3px;

  border-radius: 20px;
  background-color: var(--black);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   Main Content
========================= */

.page-content {
  flex: 1;
  padding-top: calc(var(--header-height) + var(--strip-height));
}

/* =========================
   Menu Overlay
========================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;

  visibility: hidden;
  opacity: 0;

  background-color: rgba(0, 0, 0, 0.35);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* =========================
   Footer
========================= */

.site-footer {
  margin-top: 0;
  background-color: var(--white);
  box-shadow: 0 -5px 18px rgba(0, 0, 0, 0.05);
}

/* Footer Color Strip */

.footer-color-strip {
  display: flex;
  width: 100%;
  height: var(--strip-height);
}

.footer-color-strip span {
  flex: 1;
}

.footer-color-strip .red {
  background-color: var(--red);
}

.footer-color-strip .orange {
  background-color: var(--orange);
}

.footer-color-strip .yellow {
  background-color: var(--yellow);
}

.footer-color-strip .green {
  background-color: var(--green);
}

.footer-color-strip .blue {
  background-color: var(--blue);
}

.footer-color-strip .purple {
  background-color: var(--purple);
}

/* Footer Container */

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  width: min(1450px, calc(100% - 70px));
  margin: 0 auto;
  padding: 45px 0;
}

.footer-column {
  flex: 1;
}

/* Footer Logo */

.footer-logo {
  display: flex;
  justify-content: flex-start;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  width: 180px;
}

/* Footer Address */

.footer-address {
  text-align: center;
}

/* Footer Contact */

.footer-contact {
  text-align: right;
}

.footer-column h4 {
  margin-bottom: 16px;

  color: var(--purple);

  font-size: 20px;
  font-weight: 800;
}

.footer-column p {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;

  margin-bottom: 12px;

  color: var(--gray-text);
  font-size: 15px;

  transition: color 0.3s ease;
}

.footer-contact a:last-child {
  margin-bottom: 0;
}

.footer-contact a:hover {
  color: var(--purple);
}

.footer-contact i {
  width: 18px;
  color: var(--purple);
  text-align: center;
}

/* =========================
   Tablet and Mobile
========================= */

@media (max-width: 991px) {
  :root {
    --header-height: 120px;
    --strip-height: 7px;
  }

  .header-container {
    width: calc(100% - 36px);
  }

  .site-logo {
    width: 240px;
  }

  .site-logo img {
    height: 110px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + var(--strip-height));
    left: 0;
    z-index: 999;

    width: 100%;
    max-height: calc(100vh - var(--header-height) - var(--strip-height));

    padding: 25px 28px 32px;

    overflow-y: auto;

    background-color: var(--white);
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.12);

    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);

    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    width: 100%;
    padding: 17px 4px;

    border-bottom: 1px solid var(--light-gray);

    font-size: 18px;
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;

    width: calc(100% - 40px);
    padding: 40px 0;
  }

  .footer-logo,
  .footer-address,
  .footer-contact {
    justify-content: center;
    text-align: center;
  }

  .footer-logo img {
    width: 170px;
  }

  .footer-contact a {
    justify-content: center;
  }
}

/* =========================
   Small Mobile
========================= */

@media (max-width: 576px) {
  :root {
    --header-height: 105px;
    --strip-height: 6px;
  }

  .header-container {
    width: calc(100% - 26px);
  }

  .site-logo {
    width: 210px;
  }

  .site-logo img {
    height: 95px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .main-nav {
    padding: 20px;
  }

  .main-nav a {
    padding: 15px 3px;
    font-size: 17px;
  }

  .footer-container {
    width: calc(100% - 30px);
    padding: 35px 0;
  }

  .footer-column h4 {
    font-size: 18px;
  }

  .footer-column p,
  .footer-contact a {
    font-size: 14px;
  }

  .footer-logo img {
    width: 160px;
  }
}

/* =========================
   Homepage Hero
========================= */

.home-hero {
  position: relative;

  min-height: calc(100vh - var(--header-height) - var(--strip-height));

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(20, 12, 24, 0.72) 0%,
      rgba(28, 14, 30, 0.55) 35%,
      rgba(20, 12, 24, 0.25) 100%
    ),
    url("../img/home-hero.jpeg") center center / cover no-repeat;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(101, 32, 140, 0.12),
    rgba(237, 21, 29, 0.08)
  );
}

/* Container */

.home-hero-container {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  width: min(1450px, calc(100% - 70px));
  margin: 0 auto;
}

/* Text */

.home-hero-content {
  width: min(720px, 58%);
  padding: 80px 0;

  color: var(--white);
  text-align: left;
}

.home-hero-label {
  margin-bottom: 18px;

  font-size: 17px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-hero-content h1 {
  margin-bottom: 28px;

  font-size: clamp(54px, 5.6vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

.home-hero-content h1 span {
  display: block;
}

.home-hero-description {
  max-width: 650px;

  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.7;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .home-hero {
    min-height: 700px;
    background-position: center;
  }

  .home-hero-container {
    width: calc(100% - 40px);
  }

  .home-hero-content {
    width: 70%;
    padding: 70px 0;
  }

  .home-hero-content h1 {
    font-size: clamp(48px, 7vw, 68px);
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 620px;

    align-items: flex-end;

    background-position: center;
  }

  .home-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.72)
    );

    z-index: 1;
  }

  .home-hero-container {
    width: calc(100% - 32px);
  }

  .home-hero-content {
    width: 100%;
    max-width: 100%;

    padding: 80px 0 55px;

    text-align: left;
  }

  .home-hero-content h1 {
    font-size: clamp(42px, 10vw, 60px);
    letter-spacing: -1px;
  }

  .home-hero-description {
    max-width: 100%;
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .home-hero {
    min-height: 560px;
  }

  .home-hero-container {
    width: calc(100% - 26px);
  }

  .home-hero-content {
    padding: 70px 0 40px;
  }

  .home-hero-label {
    font-size: 13px;
    letter-spacing: 1.3px;
  }

  .home-hero-content h1 {
    margin-bottom: 18px;

    font-size: clamp(36px, 12vw, 48px);
    line-height: 1.08;
  }

  .home-hero-description {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =========================
   About Intro Section
========================= */

.about-intro {
  background-color: var(--white);
  padding: 85px 0 90px;
}

.about-intro-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

.about-intro h2 {
  margin-bottom: 14px;

  color: #222b3a;

  font-size: clamp(36px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.about-intro-line {
  width: 300px;
  max-width: 100%;
  height: 2px;
  margin-bottom: 24px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.about-intro p {
  max-width: 1280px;

  color: #29303b;

  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

/* =========================
   About Intro Responsive
========================= */

@media (max-width: 991px) {
  .about-intro {
    padding: 70px 0 75px;
  }

  .about-intro-container {
    width: calc(100% - 80px);
  }

  .about-intro h2 {
    font-size: 38px;
  }

  .about-intro-line {
    width: 260px;
  }

  .about-intro p {
    font-size: 18px;
    line-height: 1.65;
  }
}

@media (max-width: 576px) {
  .about-intro {
    padding: 55px 0 60px;
  }

  .about-intro-container {
    width: calc(100% - 36px);
  }

  .about-intro h2 {
    margin-bottom: 12px;

    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .about-intro-line {
    width: 180px;
    margin-bottom: 22px;
  }

  .about-intro p {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }
}

/* ======================================================
   SERVICES
====================================================== */

.services-section {
  padding: 100px 0;
  background: #f7f7f8;
}

.services-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

/* =========================
   Heading
========================= */

.services-heading {
  margin-bottom: 50px;
}

.services-heading h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(40px, 3.4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.services-heading-line {
  width: 220px;
  height: 3px;
  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.services-intro {
  max-width: 1100px;
  margin-top: 24px;

  color: #5d6572;

  font-size: 18px;
  line-height: 1.85;
}

/* =========================
   Content Wrapper
========================= */

.services-content {
  overflow: hidden;

  background: #fff;

  border: 1px solid #e8e8eb;
  border-radius: 18px;

  box-shadow: 0 20px 55px rgba(18, 25, 38, 0.06);
}

/* =========================
   Individual Service
========================= */

.service-block {
  position: relative;

  padding: 40px;

  border-bottom: 1px solid #ececec;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block::before {
  content: "";

  position: absolute;

  left: 0;
  top: 40px;

  width: 6px;
  height: 48px;

  border-radius: 20px;

  background: linear-gradient(
    180deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.service-block:hover {
  background: #fcfcfd;
}

/* =========================
   Titles
========================= */

.service-block h3 {
  margin-bottom: 22px;

  color: var(--orange);

  font-size: 23px;
  font-weight: 800;
  line-height: 1.4;
}

/* =========================
   Paragraphs
========================= */

.service-block p {
  margin-bottom: 18px;

  color: #434b57;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}

.service-block p:last-child {
  margin-bottom: 0;
}

/* =========================
   Notice Box
========================= */

.service-notice {
  margin-top: 25px;
  padding: 18px 22px;

  border-left: 5px solid var(--orange);
  border-radius: 0 10px 10px 0;

  background: #fff8ef;

  color: #444;

  font-weight: 600;
}

/* =========================
   Links
========================= */

.service-text-link {
  display: inline-block;

  margin-top: 10px;

  color: var(--purple);

  font-size: 16px;
  font-weight: 700;

  transition: color 0.25s ease;
}

.service-text-link:hover {
  color: var(--orange);
}

/* ======================================================
   CONTACT BOX
====================================================== */

.services-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  margin-top: 45px;
  padding: 40px;

  border-radius: 18px;

  background: linear-gradient(
    120deg,
    rgba(101, 32, 140, 0.08),
    rgba(237, 21, 29, 0.05),
    rgba(255, 121, 0, 0.08)
  );
}

.services-contact h3 {
  margin-bottom: 12px;

  color: #222b3a;

  font-size: 28px;
  font-weight: 800;
}

.services-contact p {
  color: #5d6572;

  font-size: 16px;
  line-height: 1.8;
}

.services-contact p + p {
  margin-top: 12px;
}

.services-contact a {
  color: var(--purple);
  font-weight: 700;
}

.services-contact a:hover {
  color: var(--orange);
}

.services-contact-link {
  flex-shrink: 0;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-height: 54px;
  padding: 0 30px;

  border-radius: 10px;

  background: var(--white);
  color: #fff;

  font-size: 15px;
  font-weight: 700;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.services-contact-link:hover {
  background: #ffff;
  transform: translateY(-3px);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }

  .services-container {
    width: calc(100% - 80px);
  }

  .service-block {
    padding: 35px 30px;
  }

  .service-block::before {
    top: 35px;
  }

  .services-contact {
    padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  .services-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-contact-link {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 65px 0;
  }

  .services-container {
    width: calc(100% - 36px);
  }

  .services-heading {
    margin-bottom: 36px;
  }

  .services-heading h2 {
    font-size: 34px;
  }

  .services-heading-line {
    width: 170px;
  }

  .services-intro {
    margin-top: 18px;

    font-size: 16px;
    line-height: 1.8;
  }

  .services-content {
    border-radius: 14px;
  }

  .service-block {
    padding: 28px 22px;
  }

  .service-block::before {
    top: 28px;
    height: 40px;
  }

  .service-block h3 {
    margin-bottom: 16px;

    font-size: 19px;
  }

  .service-block p {
    font-size: 15px;
    line-height: 1.8;
  }

  .service-notice {
    padding: 16px 18px;
  }

  .services-contact {
    padding: 28px 22px;
  }

  .services-contact h3 {
    font-size: 24px;
  }
}

/* ======================================================
   ADVOCACY HERO
====================================================== */

.advocacy-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 95vh;
  overflow: hidden;

  background:
    linear-gradient(rgba(18, 20, 28, 0.25), rgba(18, 20, 28, 0.25)),
    url("../img/advocacy-hero.jpeg") center center/cover no-repeat;
}

/* Overlay */

.advocacy-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(15, 18, 28, 0.78) 0%,
    rgba(15, 18, 28, 0.6) 35%,
    rgba(15, 18, 28, 0.32) 100%
  );
}

/* Container */

.advocacy-container {
  position: relative;
  z-index: 2;

  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Content */

.advocacy-content {
  max-width: 720px;

  color: var(--white);
}

/* Small Label */

.hero-label {
  position: relative;

  display: inline-block;

  margin-bottom: 28px;

  color: var(--white);

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-label::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -12px;

  width: 120px;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Heading */

.advocacy-content h1 {
  margin-bottom: 28px;

  color: var(--white);

  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
}

.advocacy-content h1 span {
  display: block;
}

/* Paragraph */

.advocacy-content p:last-child {
  max-width: 640px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 19px;
  font-weight: 400;
  line-height: 1.9;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1200px) {
  .advocacy-container {
    width: calc(100% - 100px);
  }
}

@media (max-width: 991px) {
  .advocacy-hero {
    min-height: 85vh;
  }

  .advocacy-container {
    width: calc(100% - 70px);
  }

  .advocacy-content {
    max-width: 100%;
  }

  .advocacy-content h1 {
    font-size: 56px;
  }

  .advocacy-content p:last-child {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .advocacy-hero {
    min-height: 75vh;
  }

  .advocacy-container {
    width: calc(100% - 36px);
  }

  .hero-label {
    font-size: 14px;
  }

  .hero-label::after {
    width: 90px;
  }

  .advocacy-content h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .advocacy-content p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ======================================================
   ABOUT OUR ADVOCACY
====================================================== */

.advocacy-about {
  padding: 85px 0;
  background-color: #ffffff;
}

.advocacy-about-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

.advocacy-about h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.advocacy-about-line {
  width: 470px;
  max-width: 100%;
  height: 2px;
  margin-bottom: 24px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.advocacy-about p {
  margin-bottom: 18px;

  color: #28313f;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.advocacy-about p:last-child {
  margin-bottom: 0;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .advocacy-about {
    padding: 75px 0;
  }

  .advocacy-about-container {
    width: calc(100% - 80px);
  }
}

@media (max-width: 576px) {
  .advocacy-about {
    padding: 60px 0;
  }

  .advocacy-about-container {
    width: calc(100% - 36px);
  }

  .advocacy-about h2 {
    font-size: 34px;
  }

  .advocacy-about-line {
    width: 250px;
    margin-bottom: 22px;
  }

  .advocacy-about p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ======================================================
   ADVOCACY PROGRAMMING
====================================================== */

.advocacy-programming {
  padding: 90px 0 100px;
  background-color: #f8f8f9;
}

.advocacy-programming-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

/* Heading */

.advocacy-programming-heading {
  margin-bottom: 70px;
}

.advocacy-programming-heading h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.advocacy-programming-line {
  width: 645px;
  max-width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* List */

.advocacy-programming-list {
  width: 100%;
}

/* Individual Program */

.advocacy-program {
  border-bottom: 2px solid var(--orange);
}

.advocacy-program:first-child {
  border-top: 2px solid var(--orange);
}

.advocacy-program-summary {
  position: relative;

  display: flex;
  align-items: center;
  gap: 28px;

  min-height: 98px;
  padding: 20px 55px 20px 5px;

  cursor: pointer;
  list-style: none;
}

.advocacy-program-summary::-webkit-details-marker {
  display: none;
}

/* Icon */

.advocacy-program-icon {
  flex: 0 0 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  color: var(--orange);

  font-size: 34px;
}

/* Title */

.advocacy-program-title {
  color: #111820;

  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

/* Custom Arrow */

.advocacy-program-summary::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 7px;

  width: 12px;
  height: 12px;

  border-right: 3px solid #111;
  border-bottom: 3px solid #111;

  transform: translateY(-70%) rotate(45deg);

  transition: transform 0.25s ease;
}

.advocacy-program[open] .advocacy-program-summary::after {
  transform: translateY(-30%) rotate(225deg);
}

/* Hover */

.advocacy-program-summary {
  transition:
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.advocacy-program-summary:hover {
  padding-left: 14px;
  background-color: rgba(255, 145, 0, 0.04);
}

/* Open State */

.advocacy-program[open] {
  background-color: #ffffff;
}

.advocacy-program[open] .advocacy-program-summary {
  background-color: rgba(255, 145, 0, 0.06);
}

.advocacy-program[open] .advocacy-program-title {
  color: var(--orange);
}

/* Content */

.advocacy-program-content {
  max-width: 1180px;
  padding: 28px 75px 36px 83px;
}

.advocacy-program-content p {
  margin-bottom: 17px;

  color: #3e4652;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

.advocacy-program-content p:last-child {
  margin-bottom: 0;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .advocacy-programming {
    padding: 75px 0 85px;
  }

  .advocacy-programming-container {
    width: calc(100% - 80px);
  }

  .advocacy-program-summary {
    min-height: 90px;
  }

  .advocacy-program-content {
    padding-right: 50px;
  }
}

@media (max-width: 576px) {
  .advocacy-programming {
    padding: 60px 0 70px;
  }

  .advocacy-programming-container {
    width: calc(100% - 36px);
  }

  .advocacy-programming-heading {
    margin-bottom: 24px;
  }

  .advocacy-programming-heading h2 {
    font-size: 34px;
  }

  .advocacy-programming-line {
    width: 100%;
  }

  .advocacy-program-summary {
    gap: 15px;

    min-height: 82px;
    padding: 16px 42px 16px 0;
  }

  .advocacy-program-summary:hover {
    padding-left: 6px;
  }

  .advocacy-program-icon {
    flex-basis: 38px;

    width: 38px;
    height: 38px;

    font-size: 25px;
  }

  .advocacy-program-title {
    font-size: 17px;
  }

  .advocacy-program-summary::after {
    right: 5px;

    width: 10px;
    height: 10px;

    border-width: 0 3px 3px 0;
  }

  .advocacy-program-content {
    padding: 2px 8px 28px 53px;
  }

  .advocacy-program-content p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ======================================================
   ACADEMY HERO
====================================================== */

.academy-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 95vh;
  overflow: hidden;

  background:
    linear-gradient(rgba(18, 20, 28, 0.25), rgba(18, 20, 28, 0.25)),
    url("../img/academy-hero.jpeg") center center / cover no-repeat;
}

/* Overlay */

.academy-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(15, 18, 28, 0.78) 0%,
    rgba(15, 18, 28, 0.6) 35%,
    rgba(15, 18, 28, 0.32) 100%
  );
}

/* Container */

.academy-container {
  position: relative;
  z-index: 2;

  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Content */

.academy-content {
  max-width: 720px;

  color: var(--white);
  text-align: left;
}

/* Label */

.academy-label {
  position: relative;

  display: inline-block;

  margin-bottom: 28px;

  color: var(--white);

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.academy-label::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -12px;

  width: 120px;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Heading */

.academy-content h1 {
  margin-bottom: 28px;

  color: var(--white);

  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
}

.academy-content h1 span {
  display: block;
}

/* Description */

.academy-content p:last-child {
  max-width: 640px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 19px;
  font-weight: 400;
  line-height: 1.9;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1200px) {
  .academy-container {
    width: calc(100% - 100px);
  }
}

@media (max-width: 991px) {
  .academy-hero {
    min-height: 85vh;
  }

  .academy-container {
    width: calc(100% - 70px);
  }

  .academy-content {
    max-width: 100%;
  }

  .academy-content h1 {
    font-size: 56px;
  }

  .academy-content p:last-child {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .academy-hero {
    min-height: 75vh;
  }

  .academy-container {
    width: calc(100% - 36px);
  }

  .academy-label {
    font-size: 14px;
  }

  .academy-label::after {
    width: 90px;
  }

  .academy-content h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .academy-content p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ======================================================
   ABOUT OUR ACADEMY
====================================================== */

.academy-about {
  padding: 85px 0;
  background-color: #ffffff;
}

.academy-about-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

.academy-about h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.academy-about-line {
  width: 465px;
  max-width: 100%;
  height: 2px;
  margin-bottom: 24px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.academy-about p {
  margin-bottom: 18px;

  color: #28313f;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.academy-about p:last-child {
  margin-bottom: 0;
}

.academy-about strong {
  color: #222b3a;
  font-weight: 800;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .academy-about {
    padding: 75px 0;
  }

  .academy-about-container {
    width: calc(100% - 80px);
  }
}

@media (max-width: 576px) {
  .academy-about {
    padding: 60px 0;
  }

  .academy-about-container {
    width: calc(100% - 36px);
  }

  .academy-about h2 {
    font-size: 34px;
  }

  .academy-about-line {
    width: 250px;
    margin-bottom: 22px;
  }

  .academy-about p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ======================================================
   LEARNING PATHWAYS
====================================================== */

.academy-programs {
  padding: 90px 0;
  background: #f8f8f9;
}

.academy-programs-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

/* Heading */

.academy-programs-heading {
  margin-bottom: 55px;
}

.academy-programs-heading h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.academy-programs-line {
  width: 320px;
  height: 2px;
  margin-bottom: 24px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.academy-programs-heading p {
  max-width: 900px;

  color: #5d6572;

  font-size: 17px;
  line-height: 1.8;
}

/* Cards */

.academy-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.academy-card {
  background: #fff;

  border: 1px solid #e7e7e7;
  border-radius: 16px;

  padding: 40px 34px;

  transition: 0.3s ease;

  box-shadow: 0 15px 40px rgba(18, 25, 38, 0.05);
}

.academy-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 22px 45px rgba(18, 25, 38, 0.1);
}

.academy-card-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  border-radius: 50%;

  background: rgba(255, 145, 0, 0.1);

  color: var(--orange);

  font-size: 28px;
}

.academy-card h3 {
  margin-bottom: 18px;

  color: #222b3a;

  font-size: 27px;
  font-weight: 800;
}

.academy-card p {
  margin-bottom: 16px;

  color: #525c69;

  font-size: 16px;
  line-height: 1.85;
}

.academy-card p:last-child {
  margin-bottom: 0;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {
  .academy-programs {
    padding: 75px 0;
  }

  .academy-programs-container {
    width: calc(100% - 80px);
  }

  .academy-programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .academy-programs {
    padding: 60px 0;
  }

  .academy-programs-container {
    width: calc(100% - 36px);
  }

  .academy-programs-heading {
    margin-bottom: 40px;
  }

  .academy-programs-heading h2 {
    font-size: 34px;
  }

  .academy-programs-line {
    width: 220px;
  }

  .academy-card {
    padding: 30px 24px;
  }

  .academy-card h3 {
    font-size: 22px;
  }
}

/* ======================================================
   ACADEMY COURSES
====================================================== */

.academy-courses {
  padding: 90px 0;
  background-color: #ffffff;
}

.academy-courses-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

/* Heading */

.academy-courses-heading {
  margin-bottom: 28px;
}

.academy-courses-heading h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.academy-courses-line {
  width: 170px;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Content */

.academy-courses-content {
  max-width: 1320px;
}

.academy-courses-content p {
  margin-bottom: 24px;

  color: #28313f;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}

.academy-courses-subtitle {
  margin-top: 34px;
  margin-bottom: 18px !important;

  color: #222b3a !important;

  font-size: 19px !important;
  font-weight: 700 !important;
}

/* Course List */

.academy-courses-list {
  margin: 0 0 36px;
  padding-left: 28px;
}

.academy-courses-list li {
  margin-bottom: 10px;
  padding-left: 6px;

  color: #28313f;

  font-size: 17px;
  line-height: 1.65;
}

.academy-courses-list li::marker {
  color: var(--orange);
}

.academy-courses-content p:last-child {
  margin-bottom: 0;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .academy-courses {
    padding: 75px 0;
  }

  .academy-courses-container {
    width: calc(100% - 80px);
  }
}

@media (max-width: 576px) {
  .academy-courses {
    padding: 60px 0;
  }

  .academy-courses-container {
    width: calc(100% - 36px);
  }

  .academy-courses-heading {
    margin-bottom: 24px;
  }

  .academy-courses-heading h2 {
    font-size: 34px;
  }

  .academy-courses-line {
    width: 130px;
  }

  .academy-courses-content p {
    margin-bottom: 20px;

    font-size: 15px;
    line-height: 1.75;
  }

  .academy-courses-subtitle {
    margin-top: 28px;

    font-size: 17px !important;
  }

  .academy-courses-list {
    margin-bottom: 30px;
    padding-left: 22px;
  }

  .academy-courses-list li {
    margin-bottom: 12px;

    font-size: 15px;
    line-height: 1.65;
  }
}

/* ======================================================
   ACADEMY COURSE DETAILS
====================================================== */

.academy-course-details {
  padding: 90px 0 100px;
  background-color: #f8f8f9;
}

.academy-course-details-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

/* Heading */

.academy-course-details-heading {
  margin-bottom: 50px;
}

.academy-course-details-heading h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.academy-course-details-line {
  width: 420px;
  max-width: 100%;
  height: 3px;
  margin-bottom: 24px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.academy-course-details-heading p {
  max-width: 1050px;

  color: #5d6572;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}

/* Course List */

.academy-course-list {
  width: 100%;
}

/* Individual Course */

.academy-course {
  border-bottom: 2px solid var(--blue);
}

.academy-course:first-child {
  border-top: 2px solid var(--blue);
}

/* Course Title Row */

.academy-course-summary {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 100px;
  padding: 22px 65px 22px 10px;

  cursor: pointer;
  list-style: none;

  transition:
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.academy-course-summary::-webkit-details-marker {
  display: none;
}

.academy-course-summary:hover {
  padding-left: 18px;
  background-color: rgba(47, 132, 226, 0.05);
}

/* Course Title */

.academy-course-title {
  max-width: 1120px;

  color: #17202c;

  font-size: 21px;
  font-weight: 800;
  line-height: 1.5;
}

/* Arrow */

.academy-course-summary::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 12px;

  width: 13px;
  height: 13px;

  border-right: 3px solid #111820;
  border-bottom: 3px solid #111820;

  transform: translateY(-70%) rotate(45deg);

  transition: transform 0.25s ease;
}

.academy-course[open] .academy-course-summary::after {
  transform: translateY(-30%) rotate(225deg);
}

/* Open State */

.academy-course[open] {
  background-color: #ffffff;
}

.academy-course[open] .academy-course-summary {
  background-color: rgba(47, 132, 226, 0.07);
}

.academy-course[open] .academy-course-title {
  color: var(--blue);
}

/* Expanded Content */

.academy-course-content {
  max-width: 1180px;
  padding: 30px 75px 42px 40px;
}

/* Content Headings */

.academy-course-content h4 {
  margin-top: 30px;
  margin-bottom: 14px;

  color: #222b3a;

  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.academy-course-content h4:first-child {
  margin-top: 0;
}

/* Paragraphs */

.academy-course-content p {
  margin-bottom: 18px;

  color: #434b57;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

/* Lists */

.academy-course-content ul {
  margin: 0 0 26px;
  padding-left: 27px;
}

.academy-course-content li {
  margin-bottom: 10px;
  padding-left: 5px;

  color: #434b57;

  font-size: 16px;
  line-height: 1.75;
}

.academy-course-content li::marker {
  color: var(--blue);
}

.academy-course-content p:last-child,
.academy-course-content ul:last-child {
  margin-bottom: 0;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .academy-course-details {
    padding: 75px 0 85px;
  }

  .academy-course-details-container {
    width: calc(100% - 80px);
  }

  .academy-course-summary {
    min-height: 92px;
    padding-right: 55px;
  }

  .academy-course-title {
    font-size: 19px;
  }

  .academy-course-content {
    padding: 26px 45px 38px 30px;
  }
}

@media (max-width: 576px) {
  .academy-course-details {
    padding: 60px 0 70px;
  }

  .academy-course-details-container {
    width: calc(100% - 36px);
  }

  .academy-course-details-heading {
    margin-bottom: 38px;
  }

  .academy-course-details-heading h2 {
    font-size: 34px;
  }

  .academy-course-details-line {
    width: 250px;
  }

  .academy-course-details-heading p {
    font-size: 15px;
    line-height: 1.75;
  }

  .academy-course-summary {
    min-height: 84px;
    padding: 18px 42px 18px 0;
  }

  .academy-course-summary:hover {
    padding-left: 6px;
  }

  .academy-course-title {
    font-size: 17px;
    line-height: 1.45;
  }

  .academy-course-summary::after {
    right: 5px;

    width: 10px;
    height: 10px;

    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .academy-course-content {
    padding: 22px 8px 32px;
  }

  .academy-course-content h4 {
    margin-top: 26px;
    margin-bottom: 12px;

    font-size: 18px;
  }

  .academy-course-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .academy-course-content ul {
    padding-left: 22px;
  }

  .academy-course-content li {
    margin-bottom: 9px;

    font-size: 15px;
    line-height: 1.7;
  }
}

/* ======================================================
   SUPPORT HERO
====================================================== */

.support-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 95vh;
  overflow: hidden;

  background:
    linear-gradient(rgba(28, 16, 38, 0.18), rgba(28, 16, 38, 0.18)),
    url("../img/support-hero.jpeg") center center / cover no-repeat;
}

/* Overlay */

.support-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(35, 15, 48, 0.8) 0%,
    rgba(65, 31, 84, 0.6) 38%,
    rgba(101, 52, 125, 0.35) 100%
  );
}

/* Container */

.support-hero-container {
  position: relative;
  z-index: 2;

  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Content */

.support-hero-content {
  max-width: 760px;

  color: var(--white);
  text-align: left;
}

/* Label */

.support-hero-label {
  position: relative;

  display: inline-block;

  margin-bottom: 28px;

  color: var(--white);

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.support-hero-label::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -12px;

  width: 110px;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Heading */

.support-hero-content h1 {
  margin-bottom: 28px;

  color: var(--white);

  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -2px;
}

.support-hero-content h1 span {
  display: block;
}

/* Description */

.support-hero-description {
  max-width: 650px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 19px;
  font-weight: 400;
  line-height: 1.85;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1200px) {
  .support-hero-container {
    width: calc(100% - 100px);
  }
}

@media (max-width: 991px) {
  .support-hero {
    min-height: 85vh;
  }

  .support-hero-container {
    width: calc(100% - 70px);
  }

  .support-hero-content {
    max-width: 100%;
  }

  .support-hero-content h1 {
    font-size: 56px;
  }

  .support-hero-description {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .support-hero {
    min-height: 75vh;
  }

  .support-hero-container {
    width: calc(100% - 36px);
  }

  .support-hero-label {
    font-size: 14px;
  }

  .support-hero-label::after {
    width: 90px;
  }

  .support-hero-content h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .support-hero-description {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* ======================================================
   ABOUT OUR SUPPORT EFFORTS
====================================================== */

.support-about {
  padding: 85px 0;
  background-color: #ffffff;
}

.support-about-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

.support-about h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.support-about-line {
  width: 610px;
  max-width: 100%;
  height: 3px;
  margin-bottom: 24px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.support-about p {
  margin-bottom: 18px;

  color: #28313f;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.support-about p:last-child {
  margin-bottom: 0;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .support-about {
    padding: 75px 0;
  }

  .support-about-container {
    width: calc(100% - 80px);
  }
}

@media (max-width: 576px) {
  .support-about {
    padding: 60px 0;
  }

  .support-about-container {
    width: calc(100% - 36px);
  }

  .support-about h2 {
    font-size: 34px;
  }

  .support-about-line {
    width: 280px;
    margin-bottom: 22px;
  }

  .support-about p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ======================================================
   SUPPORT SERVICES
====================================================== */

.support-services {
  padding: 90px 0 100px;
  background: #f8f8f9;
}

.support-services-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

/* Heading */

.support-services-heading {
  margin-bottom: 50px;
}

.support-services-heading h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.support-services-line {
  width: 280px;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* List */

.support-services-list {
  width: 100%;
}

/* Individual Item */

.support-service {
  border-bottom: 2px solid var(--purple);
}

.support-service:first-child {
  border-top: 2px solid var(--purple);
}

.support-service-summary {
  position: relative;

  display: flex;
  align-items: center;
  gap: 28px;

  min-height: 96px;
  padding: 22px 60px 22px 6px;

  cursor: pointer;
  list-style: none;

  transition:
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.support-service-summary::-webkit-details-marker {
  display: none;
}

.support-service-summary:hover {
  padding-left: 14px;
  background: rgba(101, 32, 140, 0.05);
}

/* Icon */

.support-service-icon {
  flex: 0 0 46px;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 46px;
  height: 46px;

  color: var(--purple);

  font-size: 30px;
}

/* Title */

.support-service-title {
  color: #17202c;

  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

/* Arrow */

.support-service-summary::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 10px;

  width: 13px;
  height: 13px;

  border-right: 3px solid #111;
  border-bottom: 3px solid #111;

  transform: translateY(-70%) rotate(45deg);

  transition: transform 0.25s ease;
}

.support-service[open] .support-service-summary::after {
  transform: translateY(-30%) rotate(225deg);
}

/* Open */

.support-service[open] {
  background: #fff;
}

.support-service[open] .support-service-summary {
  background: rgba(101, 32, 140, 0.06);
}

.support-service[open] .support-service-title {
  color: var(--purple);
}

/* Content */

.support-service-content {
  padding: 28px 75px 40px 80px;
}

.support-service-content h4 {
  margin-bottom: 14px;

  color: #222b3a;

  font-size: 20px;
  font-weight: 800;
}

.support-service-content p {
  margin-bottom: 18px;

  color: #434b57;

  font-size: 16px;
  line-height: 1.85;
}

.support-service-content p:last-child {
  margin-bottom: 0;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .support-services {
    padding: 75px 0 85px;
  }

  .support-services-container {
    width: calc(100% - 80px);
  }

  .support-service-content {
    padding: 26px 45px 36px 55px;
  }
}

@media (max-width: 576px) {
  .support-services {
    padding: 60px 0 70px;
  }

  .support-services-container {
    width: calc(100% - 36px);
  }

  .support-services-heading {
    margin-bottom: 38px;
  }

  .support-services-heading h2 {
    font-size: 34px;
  }

  .support-services-line {
    width: 200px;
  }

  .support-service-summary {
    gap: 16px;
    padding: 18px 42px 18px 0;
  }

  .support-service-summary:hover {
    padding-left: 6px;
  }

  .support-service-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .support-service-title {
    font-size: 18px;
  }

  .support-service-content {
    padding: 22px 8px 30px;
  }

  .support-service-content h4 {
    font-size: 18px;
  }

  .support-service-content p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ======================================================
   CONTACT HERO
====================================================== */

.contact-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 95vh;
  overflow: hidden;

  background:
    linear-gradient(rgba(20, 18, 16, 0.2), rgba(20, 18, 16, 0.2)),
    url("../img/contact-hero.jpeg") center center / cover no-repeat;
}

/* Overlay */

.contact-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(34, 25, 15, 0.78) 0%,
    rgba(52, 38, 21, 0.58) 40%,
    rgba(75, 55, 30, 0.28) 100%
  );
}

/* Container */

.contact-hero-container {
  position: relative;
  z-index: 2;

  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Content */

.contact-hero-content {
  max-width: 720px;

  color: var(--white);
  text-align: left;
}

/* Label */

.contact-hero-label {
  position: relative;

  display: inline-block;

  margin-bottom: 28px;

  color: var(--white);

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-hero-label::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -12px;

  width: 110px;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Heading */

.contact-hero-content h1 {
  margin-bottom: 28px;

  color: var(--white);

  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -2px;
}

.contact-hero-content h1 span {
  display: block;
}

/* Description */

.contact-hero-description {
  max-width: 650px;

  color: rgba(255, 255, 255, 0.93);

  font-size: 19px;
  font-weight: 400;
  line-height: 1.85;
}

/* ======================================================
   Responsive
====================================================== */

@media (max-width: 1200px) {
  .contact-hero-container {
    width: calc(100% - 100px);
  }
}

@media (max-width: 991px) {
  .contact-hero {
    min-height: 85vh;
  }

  .contact-hero-container {
    width: calc(100% - 70px);
  }

  .contact-hero-content {
    max-width: 100%;
  }

  .contact-hero-content h1 {
    font-size: 56px;
  }

  .contact-hero-description {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    min-height: 75vh;
  }

  .contact-hero-container {
    width: calc(100% - 36px);
  }

  .contact-hero-label {
    font-size: 14px;
  }

  .contact-hero-label::after {
    width: 90px;
  }

  .contact-hero-content h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .contact-hero-description {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* ======================================================
   MAIN CONTACT
====================================================== */

.contact-main {
  padding: 85px 0;
  background: #fff;
}

.contact-main-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

/* Heading */

.contact-main-heading {
  margin-bottom: 40px;
}

.contact-main-heading h2 {
  margin-bottom: 16px;

  color: #222b3a;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.contact-main-line {
  width: 300px;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Contact Items */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  margin-bottom: 34px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

/* Icon */

.contact-item-icon {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 145, 0, 0.1);

  color: var(--orange);

  font-size: 18px;
}

/* Text */

.contact-item-content h3 {
  margin-bottom: 10px;

  color: #222b3a;

  font-size: 28px;
  font-weight: 800;
}

.contact-item-content a,
.contact-item-content p {
  color: #4e5968;

  font-size: 18px;
  line-height: 1.8;
}

.contact-item-content a {
  transition: color 0.25s ease;
}

.contact-item-content a:hover {
  color: var(--orange);
}

/* ======================================================
   Responsive
====================================================== */

@media (max-width: 991px) {
  .contact-main {
    padding: 75px 0;
  }

  .contact-main-container {
    width: calc(100% - 80px);
  }
}

@media (max-width: 576px) {
  .contact-main {
    padding: 60px 0;
  }

  .contact-main-container {
    width: calc(100% - 36px);
  }

  .contact-main-heading h2 {
    font-size: 34px;
  }

  .contact-main-line {
    width: 220px;
  }

  .contact-item {
    gap: 14px;
  }

  .contact-item-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .contact-item-content h3 {
    font-size: 22px;
  }

  .contact-item-content a,
  .contact-item-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ======================================================
   FEEDBACK SECTION
====================================================== */

.feedback-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.feedback-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;
}

/* Heading */

.feedback-heading {
  margin-bottom: 45px;
}

.feedback-heading h2 {
  margin: 0 0 16px;
  color: #222b3a;
  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.feedback-line {
  width: 240px;
  height: 3px;
  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Form */

.feedback-form {
  width: 100%;
}

/* Feedback type */

.feedback-form .feedback-type {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  gap: 16px 30px;

  width: 100%;
  margin: 0 0 10px;
}

.feedback-form .feedback-radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  width: auto;
  margin: 0;

  color: #28313f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;

  cursor: pointer;
}

.feedback-form .feedback-radio input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;

  display: inline-block;

  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;

  margin: 0;
  padding: 0;

  border: initial;

  flex: 0 0 18px;

  accent-color: var(--purple);

  cursor: pointer;
}

.feedback-form .feedback-radio span {
  display: inline-block;
  width: auto;
  margin: 0;
}

/* Form groups */

.feedback-form .form-group {
  margin-top: 28px;
}

.feedback-form input:not([type="radio"]),
.feedback-form textarea {
  display: block;
  width: 100%;

  padding: 0 0 14px;

  border: none;
  border-bottom: 1.5px solid #d9d9dc;
  border-radius: 0;

  background: transparent;
  color: #222b3a;

  font-family: inherit;
  font-size: 20px;
  line-height: 1.5;

  box-sizing: border-box;

  transition: border-color 0.25s ease;
}

.feedback-form textarea {
  min-height: 160px;
  padding-top: 12px;
  resize: vertical;
}

.feedback-form input:not([type="radio"])::placeholder,
.feedback-form textarea::placeholder {
  color: #a7a7ad;
  opacity: 1;
}

.feedback-form input:not([type="radio"]):focus,
.feedback-form textarea:focus {
  outline: none;
  border-bottom-color: var(--purple);
}

/* Error messages */

.feedback-form .form-error {
  display: block;

  min-height: 20px;
  margin-top: 8px;

  color: #dc3545;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Submit button */

.feedback-btn {
  display: block;
  width: 100%;

  margin-top: 40px;
  padding: 18px;

  border: 2px solid var(--purple);

  background-color: transparent;
  color: var(--purple);

  font-family: inherit;
  font-size: 24px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.feedback-btn:hover {
  background-color: var(--purple);
  color: #ffffff;
}

.feedback-btn:focus-visible {
  outline: 3px solid rgba(101, 45, 145, 0.25);
  outline-offset: 3px;
}

/* Success message */

.feedback-success {
  display: none;

  margin: 22px 0 0;

  color: #1b8b47;

  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.feedback-success i {
  margin-right: 8px;
}

.feedback-success.show {
  display: block;
}

/* ======================================================
   TABLET
====================================================== */

@media (max-width: 991px) {
  .feedback-section {
    padding: 75px 0;
  }

  .feedback-container {
    width: calc(100% - 80px);
  }

  .feedback-form input:not([type="radio"]),
  .feedback-form textarea {
    font-size: 18px;
  }

  .feedback-btn {
    font-size: 22px;
  }
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 576px) {
  .feedback-section {
    padding: 60px 0;
  }

  .feedback-container {
    width: calc(100% - 36px);
  }

  .feedback-heading {
    margin-bottom: 35px;
  }

  .feedback-heading h2 {
    font-size: 34px;
  }

  .feedback-line {
    width: 180px;
  }

  /* One radio option per line */

  .feedback-form .feedback-type {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 16px !important;

    width: 100% !important;
    margin-bottom: 15px;
  }

  .feedback-form .feedback-radio {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: 100% !important;
    margin: 0 !important;

    font-size: 16px;
  }

  .feedback-form .feedback-radio input[type="radio"] {
    display: inline-block !important;

    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;

    margin: 0 !important;

    flex: 0 0 18px !important;
  }

  .feedback-form .feedback-radio span {
    display: inline-block !important;
    width: auto !important;
  }

  .feedback-form .form-group {
    margin-top: 24px;
  }

  .feedback-form input:not([type="radio"]),
  .feedback-form textarea {
    font-size: 17px;
  }

  .feedback-form textarea {
    min-height: 140px;
  }

  .feedback-btn {
    margin-top: 30px;
    padding: 16px;
    font-size: 20px;
  }

  .feedback-success {
    font-size: 15px;
  }
}
