@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Golos Text";
  src: url("/assets/fonts/subset-GolosText-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Epilogue";
  src: url("/assets/fonts/subset-Epilogue-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("/assets/fonts/subset-GolosText-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Epilogue";
  src: url("/assets/fonts/subset-Epilogue-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("/assets/fonts/subset-GolosText-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Epilogue";
  src: url("/assets/fonts/subset-Epilogue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Змінні */
/* Адаптивні брейкпоінти (Mobile First) */
/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Golos Text", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #0077b6;
  transition: color 0.3s;
}
a:hover {
  color: rgb(0, 85.6538461538, 131);
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: "Epilogue", sans-serif;
  color: #0a1931;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
.section--light-bg {
  background-color: #f8f9fa;
}
.section--dark-bg {
  background-color: #0a1931;
  color: #ffffff;
}
.section--dark-bg .section-heading,
.section--dark-bg h2,
.section--dark-bg h3 {
  color: #ffffff;
}
.section--dark-bg .section-description {
  color: rgb(49.8644067797, 112.6610169492, 213.1355932203);
}

.section-heading {
  margin-bottom: 1rem;
  text-align: center;
}
.section-heading--inverted {
  color: #ffffff;
}

.section-description {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  color: #555555;
}

/* Utility Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--3-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--4-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
}
.button--primary {
  background-color: #ffc300;
  color: #0a1931;
  border-color: #ffc300;
}
.button--primary:hover {
  background-color: #cc9c00;
  color: #0a1931;
}
.button--secondary {
  background-color: transparent;
  color: #0a1931;
  border-color: #0a1931;
}
.button--secondary:hover {
  background-color: #0a1931;
  color: #ffffff;
}
.button--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Arrow Link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}
.link-arrow::after {
  content: "→";
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}
.link-arrow:hover::after {
  transform: translateX(5px);
}

/* HEADER BLOCK */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(10, 25, 49, 0.05);
  /* Mobile menu styles */
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.header__logo {
  display: block;
}
.header__logo .logo__img {
  height: 70px;
  width: auto;
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
  }
}
.header__cta-button {
  display: none;
  margin-left: 1.5rem;
  font-size: 0.85rem;
}
@media (min-width: 1024px) {
  .header__cta-button {
    display: inline-block;
  }
}
.header__burger-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}
@media (min-width: 1024px) {
  .header__burger-btn {
    display: none;
  }
}
.header .nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(10, 25, 49, 0.1);
  padding: 1.5rem 0;
  z-index: 999;
}
.header .nav.is-open .nav__list {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.header .nav.is-open .nav__item {
  width: 100%;
  border-bottom: 1px solid #f8f9fa;
}
.header .nav.is-open .nav__link {
  padding: 1rem 1.5rem;
  display: block;
}
.header .nav.is-open .nav__dropdown {
  position: static;
  box-shadow: none;
  padding-left: 1.5rem;
  border-left: 2px solid #ffc300;
  margin-top: 0.5rem;
}
.header .nav.is-open .header__cta-button {
  display: block;
  margin: 1rem 1.5rem 0;
  width: auto;
}

.burger-btn {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .burger-btn {
    display: none;
  }
}
.burger-btn__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0a1931;
  transition: all 0.3s ease;
}
.burger-btn.is-active .burger-btn__line:nth-child(1) {
  transform: translateY(-6px) rotate(45deg);
}
.burger-btn.is-active .burger-btn__line:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-active .burger-btn__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* NAV ELEMENT */
.nav__list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: block;
  padding: 0.5rem 0;
  font-weight: 600;
  color: #0a1931;
  position: relative;
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffc300;
  transition: width 0.3s ease;
}
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(10, 25, 49, 0.1);
  border-top: 3px solid #0077b6;
  padding: 0.5rem 0;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}
.nav__item--has-dropdown:hover .nav__dropdown {
  display: block;
  animation: fadeIn 0.3s ease-out forwards;
}

.dropdown__link {
  padding: 0.75rem 1.5rem;
  display: block;
  color: #333333;
  font-weight: 400;
}
.dropdown__link:hover {
  background-color: #f8f9fa;
  color: #0077b6;
}

/* HERO BLOCK */
.hero {
  height: 80vh;
  min-height: 400px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 25, 49, 0.75);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.hero__title {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: slideInUp 0.8s ease-out both;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgb(134.5762711864, 171.4406779661, 230.4237288136);
  animation: slideInUp 1s ease-out both;
  animation-delay: 0.2s;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}
.hero__cta-link {
  animation: slideInUp 1.2s ease-out both;
  animation-delay: 0.4s;
}

/* SERVICES OVERVIEW BLOCK */
.services-overview__heading {
  text-align: center;
}

.service-card, .solution-area-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(10, 25, 49, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #0077b6;
}
.service-card:hover, .solution-area-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.15);
}
.service-card--highlight {
  border-left-color: #ffc300;
}
.service-card--highlight:hover {
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.2);
}
.service-card--highlight .service-card__link {
  color: #ffc300;
}
.service-card__title {
  margin-bottom: 0.75rem;
}
.service-card__text {
  margin-bottom: 1.5rem;
  color: #555555;
}
.service-card__link {
  color: #0077b6;
}

/* PROVEN DIFFERENCE BLOCK */
.proven-difference__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .proven-difference__container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.proven-difference__content {
  flex: 1;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .proven-difference__content {
    max-width: 50%;
    padding-right: 3rem;
  }
}
.proven-difference__heading {
  text-align: left;
  margin-bottom: 1.5rem;
}
.proven-difference__text {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.proven-difference__list {
  margin-bottom: 2rem;
}
.proven-difference__list-item {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-weight: 600;
}
.proven-difference__list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffc300;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}
.proven-difference__image-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .proven-difference__image-wrapper {
    max-width: 45%;
  }
}
.proven-difference__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 25, 49, 0.1);
}

/* SECTOR KNOWLEDGE BLOCK */
.sector-knowledge__item, .sectoral-focus__item {
  background-color: #0a1931;
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.sector-knowledge__item:hover, .sectoral-focus__item:hover {
  background-color: #0077b6;
  transform: translateY(-3px);
}

/* CASE STUDIES BLOCK */
.case-studies__container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.case-studies__grid {
  grid-template-columns: repeat(2, 1fr);
}

.case-study-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  border-top: 5px solid #ffc300;
  color: #ffffff;
  transition: background-color 0.3s ease;
}
.case-study-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.case-study-card__title {
  color: #ffc300;
  margin-bottom: 1rem;
  font-weight: 700;
}
.case-study-card__excerpt {
  color: rgb(92.2203389831, 142.0508474576, 221.7796610169);
}

/* INSIGHTS BLOCK */
.insights__grid {
  grid-template-columns: repeat(2, 1fr);
}

.article-preview {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(10, 25, 49, 0.05);
}
.article-preview__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.article-preview:hover .article-preview__image {
  transform: scale(1.05);
}
.article-preview__title {
  padding: 1rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}
.article-preview__link {
  color: #0a1931;
}
.article-preview__link:hover {
  color: #0077b6;
}
.article-preview__excerpt {
  padding: 0 1.5rem 1.5rem;
  color: #555555;
}

/* TESTIMONIALS BLOCK */
.testimonial-card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 25, 49, 0.07);
  border-left: 5px solid #0077b6;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-card__quote {
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #0a1931;
}
.testimonial-card__footer {
  text-align: right;
  border-top: 1px solid #f8f9fa;
  padding-top: 0.75rem;
}
.testimonial-card__author {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: #0077b6;
}

/* CTA BLOCK */
.cta__container--banner {
  background-size: cover;
  background-position: center;
  background-color: #0a1931;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cta__container--banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 25, 49, 0.85);
  z-index: 1;
}
.cta__title, .cta__text, .cta__button {
  position: relative;
  z-index: 2;
}
.cta__title {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 2.5rem;
  }
}
.cta__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgb(134.5762711864, 171.4406779661, 230.4237288136);
}

/* FOOTER BLOCK */
.footer {
  background-color: #0a1931;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__brand {
  max-width: 300px;
}
.footer__logo {
  display: block;
  margin-bottom: 1rem;
}
.footer__logo .logo__img {
  filter: brightness(0) invert(1);
  height: 40px;
}
.footer__mission {
  color: rgb(134.5762711864, 171.4406779661, 230.4237288136);
  font-size: 0.9rem;
}
.footer__heading, .footer .footer-nav__heading {
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #ffc300;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__nav {
    gap: 3rem;
  }
}
.footer .footer-nav__link {
  color: rgb(176.9322033898, 200.8305084746, 239.0677966102);
  padding: 0.25rem 0;
  display: inline-block;
  transition: color 0.3s ease;
}
.footer .footer-nav__link:hover {
  color: #ffc300;
}
.footer__address-text {
  font-style: normal;
  color: rgb(134.5762711864, 171.4406779661, 230.4237288136);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}
.footer__copyright {
  font-size: 0.85rem;
  color: rgb(49.8644067797, 112.6610169492, 213.1355932203);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =======================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================= */
/* HERO MODIFIER FOR ABOUT PAGE */
.hero--small {
  height: 40vh;
  min-height: 300px;
}
.hero--small .hero__title {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .hero--small .hero__title {
    font-size: 3rem;
  }
}
.hero--small .hero__subtitle {
  font-size: 1rem;
}

/* MISSION & VISION BLOCK */
.mission-vision__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .mission-vision__container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.mission-vision__card {
  flex: 1;
  padding: 2.5rem;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(10, 25, 49, 0.08);
  border-top: 4px solid #0077b6;
  transition: transform 0.3s ease;
}
.mission-vision__card:hover {
  transform: translateY(-5px);
}
.mission-vision__card--vision {
  border-top-color: #ffc300;
}
.mission-vision__heading {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.mission-vision__text {
  font-size: 1.1rem;
  color: #555555;
}

/* HISTORY TIMELINE BLOCK */
.history__timeline {
  position: relative;
  padding-left: 20px;
  /* Vertical Line */
}
@media (min-width: 768px) {
  .history__timeline {
    padding-left: 50px;
  }
}
.history__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #f8f9fa;
  border-radius: 2px;
}
.history .timeline__item {
  position: relative;
  padding: 1.5rem 0;
}
.history .timeline__item::before {
  content: "";
  position: absolute;
  left: -32px; /* Position circle on line */
  top: 2rem;
  width: 20px;
  height: 20px;
  background-color: #ffc300;
  border: 4px solid #ffffff;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px #0077b6; /* Outer glow/ring */
}
@media (min-width: 768px) {
  .history .timeline__item::before {
    left: -60px;
  }
}
.history .timeline__item:hover::before {
  background-color: #0a1931;
  box-shadow: 0 0 0 4px #ffc300;
}
.history .timeline__year {
  font-family: "Epilogue", sans-serif;
  font-size: 1.5rem;
  color: #0077b6;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.timeline__item:hover .history .timeline__year {
  color: #0a1931;
}
.history .timeline__description {
  color: #555555;
}

/* TEAM LEADERSHIP BLOCK */
.team {
  padding-bottom: 6rem;
}

.team-member-card {
  background-color: #0a1931;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}
.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 195, 0, 0.15);
}
.team-member-card__photo {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(80%);
  transition: filter 0.3s ease;
}
.team-member-card__photo:hover {
  filter: grayscale(0%);
}
.team-member-card__info {
  padding: 1.5rem 1rem;
  color: #ffffff;
}
.team-member-card__name {
  font-size: 1.5rem;
  color: #ffc300;
  margin-bottom: 0.25rem;
}
.team-member-card__title {
  font-weight: 600;
  color: rgb(92.2203389831, 142.0508474576, 221.7796610169);
  margin-bottom: 0.75rem;
}
.team-member-card__bio {
  font-size: 0.9rem;
  color: rgb(134.5762711864, 171.4406779661, 230.4237288136);
}

/* VALUES BLOCK */
.values .value-item {
  padding: 2rem;
  border: 1px solid #f8f9fa;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s;
}
.values .value-item:hover {
  background-color: #f8f9fa;
}
.values .value-item--accent {
  background-color: #fff3cc;
  border-color: #ffc300;
}
.values .value-item--accent:hover {
  background-color: rgb(255, 237, 178.5);
}
.values .value-item__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #0077b6;
}
.values .value-item__text {
  color: #555555;
}

/* CTA SMALL MODIFIER */
.cta--small .cta__container {
  background-color: #f8f9fa;
  background-image: none !important;
  padding: 2rem;
  border: 1px dashed #0077b6;
}
.cta--small .cta__title {
  color: #0a1931;
}
.cta--small .cta__text--small {
  color: #555555;
  font-size: 1rem;
}

/* =======================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================= */
/* HERO MODIFIER FOR SERVICES PAGE */
.hero--services {
  height: 45vh;
  min-height: 350px;
}

/* SERVICES INTRO BLOCK */
.services-intro {
  padding-bottom: 2rem;
}
.services-intro__text {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  font-size: 1.15rem;
  line-height: 1.8;
}

/* SERVICE DETAIL CARD BLOCK */
.service-detail-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 25, 49, 0.08);
  margin-bottom: 3rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .service-detail-card {
    flex-direction: row;
    margin-bottom: 4rem;
    min-height: 350px;
  }
}
.service-detail-card__content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .service-detail-card__content {
    padding: 3rem 4rem;
  }
}
.service-detail-card__image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .service-detail-card__image {
    width: 40%;
    height: auto;
  }
}
.service-detail-card__icon-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .service-detail-card__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    background-color: #f8f9fa;
  }
}
.service-detail-card__icon {
  font-size: 3rem;
}
.service-detail-card__title {
  color: #0077b6;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-family: "Epilogue", sans-serif;
}
.service-detail-card__excerpt {
  margin-bottom: 1.5rem;
  color: #555555;
  font-size: 1.05rem;
  line-height: 1.7;
}
.service-detail-card__list {
  margin-bottom: 2rem;
}
.service-detail-card__list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.service-detail-card__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #ffc300;
  font-size: 0.75rem;
  line-height: 1.5;
}

.section--dark-bg .cta__text {
  font-size: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

/* =======================================
   FAQ PAGE SPECIFIC STYLES
   ======================================= */
/* HERO MODIFIER FOR FAQ PAGE */
.hero--faq {
  height: 40vh;
  min-height: 300px;
}

/* FAQ CATEGORIES BLOCK (Tabs) */
.faq-categories__heading {
  margin-bottom: 2rem;
}
.faq-categories__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .faq-categories__tabs {
    gap: 1rem;
  }
}
.faq-categories__tab-btn {
  background-color: #ffffff;
  color: #0a1931;
  border-color: #0a1931;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.faq-categories__tab-btn.is-active, .faq-categories__tab-btn:hover {
  background-color: #0077b6;
  color: #ffffff;
  border-color: #0077b6;
}
.faq-categories__tab-btn.is-active {
  border-bottom: 3px solid #ffc300;
}

/* FAQ ACCORDION BLOCK */
.faq-accordion-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-accordion.is-hidden {
  display: none;
}

.accordion-item {
  border: 1px solid #f8f9fa;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(10, 25, 49, 0.05);
}
.accordion-item__header {
  margin: 0;
}
.accordion-item__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: #ffffff;
  color: #0a1931;
  font-family: "Epilogue", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  /* Plus/Minus Icon */
}
.accordion-item__button:hover {
  background-color: #f8f9fa;
}
.accordion-item__button::after {
  content: "+";
  font-size: 1.5rem;
  color: #0077b6;
  font-weight: 500;
  margin-left: 1rem;
  transition: transform 0.3s;
}
.accordion-item__button[aria-expanded=true] {
  background-color: #f8f9fa;
  color: #0077b6;
}
.accordion-item__button[aria-expanded=true]::after {
  content: "–";
  transform: rotate(180deg);
}
.accordion-item__content {
  padding: 0 1.5rem;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.accordion-item__content[aria-hidden=false] {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 500px; /* Placeholder for animation */
}
.accordion-item__content p {
  color: #555555;
  line-height: 1.7;
}

/* =======================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================= */
/* HERO MODIFIER FOR CONTACT PAGE */
.hero--contact {
  height: 40vh;
  min-height: 300px;
}

/* CONTACT INFO AND FORM BLOCK */
.contact-info-form__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-info-form__container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact-info-form__details {
  flex: 1;
}
@media (min-width: 1024px) {
  .contact-info-form__details {
    padding-right: 3rem;
  }
}
.contact-info-form__form-wrapper {
  flex: 1.2;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 25, 49, 0.1);
  border-top: 5px solid #ffc300;
}

/* CONTACT DETAILS */
.contact-details__heading--left {
  text-align: left;
  margin-bottom: 1.5rem;
}
.contact-details__text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555555;
}
.contact-details__item {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #f8f9fa;
}
.contact-details__label {
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  color: #0a1931;
  margin-bottom: 0.25rem;
  display: block;
}
.contact-details__link, .contact-details__address {
  font-size: 1.05rem;
  color: #0077b6;
  font-style: normal;
}
.contact-details__link:hover, .contact-details__address:hover {
  color: #ffc300;
}

/* CONTACT FORM */
.contact-form__title {
  color: #0a1931;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f8f9fa;
  padding-bottom: 0.75rem;
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form .form-group__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
  font-size: 0.95rem;
}
.contact-form .form-group__input,
.contact-form .form-group__textarea,
.contact-form .form-group__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-family: "Golos Text", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form .form-group__input:focus,
.contact-form .form-group__textarea:focus,
.contact-form .form-group__select:focus {
  border-color: #0077b6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.2);
}
.contact-form .form-group__textarea {
  resize: vertical;
}
.contact-form__submit {
  margin-top: 1rem;
  width: 100%;
}

/* FORM STATUS (Imitation Logic) */
.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-weight: 700;
  text-align: center;
  display: none;
}
.form-status.is-sending {
  display: block;
  background-color: rgb(255, 237, 178.5);
  color: #0a1931;
}
.form-status.is-success {
  display: block;
  background-color: #d4edda; /* Light Green */
  color: #155724; /* Dark Green */
  border: 1px solid #c3e6cb;
  animation: fadeIn 0.3s ease;
}
.form-status.is-error {
  display: block;
  background-color: #f8d7da; /* Light Red */
  color: #721c24; /* Dark Red */
  border: 1px solid #f5c6cb;
  animation: fadeIn 0.3s ease;
}

/* MAP BLOCK */
.map {
  padding: 0 0 4rem 0;
}
.map__heading {
  margin-bottom: 2rem;
}
.map__embed-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 25, 49, 0.1);
}
.map__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =======================================
   STRATEGY INNER PAGE SPECIFIC STYLES
   ======================================= */
/* HERO MODIFIER FOR INNER SERVICE PAGES */
.hero--service-inner {
  height: 60vh;
  min-height: 300px;
}
.hero--service-inner .hero__breadcrumb {
  color: #ffc300;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.9rem;
  animation: fadeIn 0.8s ease-out both;
}
.hero--service-inner .hero__title {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .hero--service-inner .hero__title {
    font-size: 3.5rem;
  }
}

/* STRATEGY INTRO (TEXT + IMAGE) */
.strategy-intro__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .strategy-intro__container {
    flex-direction: row;
    align-items: center;
  }
}
.strategy-intro__content {
  flex: 1;
}
.strategy-intro__heading {
  text-align: left !important;
  margin-bottom: 1.5rem;
}
.strategy-intro__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333333;
}
.strategy-intro__image-wrapper {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .strategy-intro__image-wrapper {
    max-width: 45%;
  }
}
.strategy-intro__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.2);
}

/* FOCUS AREAS BLOCK */
.focus-area-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: #ffffff;
  border-left: 5px solid #0077b6;
  box-shadow: 0 4px 15px rgba(10, 25, 49, 0.05);
  transition: transform 0.3s ease;
}
.focus-area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.15);
}
.focus-area-card--accent {
  border-left-color: #ffc300;
}
.focus-area-card--accent .focus-area-card__icon {
  color: #ffc300;
}
.focus-area-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  color: #0077b6;
}
.focus-area-card__title {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}
.focus-area-card__description {
  color: #555555;
}

/* METHODOLOGY (STEPS) BLOCK */
.methodology {
  padding: 6rem 0;
}
.methodology .methodology__cta, .methodology .hr-methodology__cta, .methodology .risk-methodology__cta {
  margin-top: 3rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .steps {
    gap: 2rem;
  }
}
.steps__item, .process-steps__item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 3px solid #ffc300;
  flex: 1 1 45%; /* For two columns on tablet */
}
@media (min-width: 1024px) {
  .steps__item, .process-steps__item {
    flex: 1 1 20%; /* For four columns on desktop */
  }
}
.steps__number {
  display: inline-block;
  font-family: "Epilogue", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffc300;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.steps__title, .process-steps__icon {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.steps__description, .process-steps__text {
  color: rgb(49.8644067797, 112.6610169492, 213.1355932203);
  font-size: 0.95rem;
}

/* TARGET AUDIENCE BLOCK */
.target-audience__list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .target-audience__list-wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.target-audience__list {
  flex: 1;
}
.target-audience__item {
  font-size: 1.15rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f8f9fa;
  position: relative;
  padding-left: 2rem;
}
.target-audience__item:last-child {
  border-bottom: none;
}
.target-audience__item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0077b6;
  font-size: 1.25rem;
  font-weight: 700;
}
.target-audience__item strong {
  color: #0a1931;
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
}
.target-audience__image-wrapper {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .target-audience__image-wrapper {
    max-width: 45%;
  }
}
.target-audience__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* OPERATIONS INTRO (TEXT + KEY STATS) */
.operations-intro {
  padding-bottom: 2rem;
}
.operations-intro__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .operations-intro__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.operations-intro__content {
  flex: 1.5;
}
.operations-intro__heading {
  text-align: left !important;
  margin-bottom: 1.5rem;
}
.operations-intro__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333333;
}
.operations-intro__key-stats {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .operations-intro__key-stats {
    flex-direction: column;
  }
}

.key-stat-card {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #0077b6;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
}
.key-stat-card--accent {
  background-color: #ffc300;
  color: #0a1931;
  box-shadow: 0 5px 20px rgba(255, 195, 0, 0.5);
}
.key-stat-card__number {
  font-family: "Epilogue", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.key-stat-card__label {
  font-weight: 600;
  font-size: 0.95rem;
}

/* SOLUTION AREAS (Service Cards) */
.solution-areas__heading {
  margin-bottom: 3rem;
}

.solution-area-item {
  /* Reuse general card styling */
  border-left: 5px solid #0a1931;
}
.solution-area-item--highlight {
  border-left-color: #0077b6;
}
.solution-area-item--highlight:hover {
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.25);
}
.solution-area-item__title {
  font-size: 1.35rem;
}
.solution-area-item__description {
  margin-bottom: 1rem;
}
.solution-area-item .link-arrow {
  color: #0a1931;
}

/* IMPLEMENTATION METHOD (Dark Background) */
.implementation {
  padding: 6rem 0;
}
.implementation__blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .implementation__blocks {
    flex-direction: row;
    justify-content: space-between;
  }
}
.implementation__block {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-bottom: 3px solid #0077b6;
}
.implementation__icon {
  display: block;
  font-family: "Epilogue", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffc300;
  margin-bottom: 1rem;
}
.implementation__icon::before {
  content: "✓ ";
  margin-right: 0.5rem;
  color: #0077b6;
}
.implementation__text {
  color: rgb(92.2203389831, 142.0508474576, 221.7796610169);
  font-size: 0.95rem;
}
.implementation__cta {
  margin-top: 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* SECTORAL FOCUS (Grid) */
.sectoral-focus__description {
  margin-bottom: 2rem;
}
.sectoral-focus__item {
  /* Reuse style from homepage */
  background-color: #f8f9fa;
  color: #0a1931;
  border: 1px solid #e0e0e0;
}
.sectoral-focus__item:hover {
  background-color: #0077b6;
  color: #ffffff;
  transform: translateY(-3px);
  border-color: #0077b6;
}

.digital-intro {
  padding-bottom: 2rem;
}
.digital-intro__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .digital-intro__container {
    flex-direction: row;
    align-items: center;
  }
}
.digital-intro__image-wrapper {
  flex: 1;
  min-width: 0;
  order: 1; /* Place image first on mobile/tablet */
}
@media (min-width: 1024px) {
  .digital-intro__image-wrapper {
    order: 0; /* Place image left on desktop */
    max-width: 45%;
  }
}
.digital-intro__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 25, 49, 0.1);
}
.digital-intro__content {
  flex: 1.5;
}
.digital-intro__heading {
  text-align: left !important;
  margin-bottom: 1.5rem;
}
.digital-intro__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1.5rem;
}
.digital-intro__link {
  color: #ffc300;
  font-weight: 700;
}

.solution-pillars__heading {
  margin-bottom: 3rem;
}

.pillar-card {
  padding: 2.5rem;
  border-radius: 8px;
  background-color: #ffffff;
  border-bottom: 4px solid #0a1931;
  box-shadow: 0 4px 15px rgba(10, 25, 49, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 195, 0, 0.15);
  border-bottom-color: #ffc300;
}
.pillar-card--accent {
  background-color: #0077b6;
  color: #ffffff;
  border-bottom-color: #ffc300;
}
.pillar-card--accent .pillar-card__number {
  color: #ffc300;
}
.pillar-card--accent .pillar-card__title {
  color: #ffffff;
}
.pillar-card__number {
  font-family: "Epilogue", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #0077b6;
  display: block;
  margin-bottom: 0.5rem;
}
.pillar-card__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #0a1931;
}
.pillar-card__description {
  color: #555555;
}
.pillar-card--accent .pillar-card__description {
  color: rgb(131, 212.0769230769, 255);
}

.technology-roadmap {
  padding: 6rem 0;
}
.technology-roadmap__description {
  margin-bottom: 3rem;
}

.roadmap-stages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .roadmap-stages {
    flex-direction: row;
    justify-content: space-between;
  }
}
.roadmap-stages__item {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-right: 2px solid #0077b6;
  position: relative;
}
@media (min-width: 768px) {
  .roadmap-stages__item {
    padding: 1.5rem 1rem;
  }
}
.roadmap-stages__item--arrow {
  /* Optional arrow/separator visual for desktop flow */
}
@media (min-width: 768px) {
  .roadmap-stages__item--arrow::after {
    content: "→";
    position: absolute;
    right: -25px; /* Adjust based on gap */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ffc300;
    font-weight: 700;
    line-height: 1;
  }
}
.roadmap-stages__item:last-child {
  border-right: none;
}
.roadmap-stages__title {
  color: #ffc300;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.roadmap-stages__text {
  color: rgb(49.8644067797, 112.6610169492, 213.1355932203);
  font-size: 0.9rem;
}

.risk-management__content-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .risk-management__content-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
.risk-management__text {
  flex: 1.5;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
}
.risk-management__list {
  flex: 1;
  list-style: none;
  padding: 1rem 0 0 0;
}
.risk-management__list li {
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.risk-management__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0077b6;
  font-size: 1.1rem;
}

.financial-intro {
  padding-bottom: 2rem;
}
.financial-intro__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .financial-intro__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.financial-intro__content {
  flex: 1.5;
}
.financial-intro__heading {
  text-align: left !important;
  margin-bottom: 1.5rem;
}
.financial-intro__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333333;
}
.financial-intro__highlights {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.highlight-box {
  padding: 2rem;
  border-radius: 8px;
  background-color: #0a1931;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 5px 20px rgba(10, 25, 49, 0.3);
  border-left: 5px solid #ffc300;
  transition: transform 0.3s;
}
.highlight-box:hover {
  transform: scale(1.03);
}
.highlight-box--accent {
  background-color: #ffc300;
  color: #0a1931;
  border-left-color: #0077b6;
  box-shadow: 0 5px 20px rgba(255, 195, 0, 0.5);
}
.highlight-box__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.highlight-box--accent .highlight-box__icon {
  color: #0077b6;
}
.highlight-box__text {
  font-weight: 600;
  font-size: 1.05rem;
}

/* SERVICE FOCUS CARDS (2-col grid) */
.service-focus-card {
  padding: 1.5rem;
  border: 1px solid #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(10, 25, 49, 0.05);
}
.service-focus-card:hover {
  border-color: #0077b6;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.1);
}
.service-focus-card--secondary {
  border-left: 5px solid #0077b6;
}
.service-focus-card--accent {
  border-left: 5px solid #ffc300;
}
.service-focus-card__title {
  font-size: 1.3rem;
  color: #0a1931;
  margin-bottom: 0.5rem;
}
.service-focus-card__description {
  color: #555555;
}

/* METHODOLOGY PROCESS (Dark Background) */
.methodology {
  padding: 6rem 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .process-steps {
    gap: 2rem;
  }
}
.process-steps__item {
  /* Reuse style from Strategy page */
  flex: 1 1 45%;
  border-bottom: 3px solid #0077b6; /* Use secondary for this service */
}
@media (min-width: 1024px) {
  .process-steps__item {
    flex: 1 1 20%;
  }
}
.process-steps__item:hover {
  border-bottom-color: #ffc300;
}
.process-steps__icon {
  font-size: 1.15rem;
  color: #ffc300;
}
.process-steps__icon::before {
  content: "➤ ";
  margin-right: 0.5rem;
  color: #0077b6;
}
.process-steps .methodology__cta, .process-steps .hr-methodology__cta, .process-steps .risk-methodology__cta {
  margin-top: 4rem;
}

/* OUR IMPACT (Text + Quote) */
.our-impact__flex-row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .our-impact__flex-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.our-impact__text-content {
  flex: 1.5;
}
.our-impact__list {
  list-style: none;
  padding: 1rem 0 0 0;
}
.our-impact__list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.our-impact__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffc300;
  font-weight: 700;
}
.our-impact__quote-box {
  flex: 1;
  padding: 2rem;
  border-radius: 8px;
  background-color: #0077b6;
  color: #ffffff;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.2);
}
.our-impact__quote-icon {
  font-family: serif;
  font-size: 3rem;
  line-height: 0.5;
  color: #ffc300;
  position: absolute;
  top: 10px;
  left: 10px;
}
.our-impact__quote-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1rem;
  padding-top: 1rem;
  line-height: 1.6;
}
.our-impact__quote-author {
  font-weight: 700;
  text-align: right;
  color: rgb(131, 212.0769230769, 255);
}

.risk-intro {
  padding-bottom: 2rem;
}
.risk-intro__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .risk-intro__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.risk-intro__content {
  flex: 1.5;
}
.risk-intro__heading {
  text-align: left !important;
  margin-bottom: 1.5rem;
}
.risk-intro__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333333;
}
.risk-intro__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

/* RISK RING VISUAL (Simple representation of ERM) */
.risk-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #0077b6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .risk-ring {
    width: 250px;
    height: 250px;
  }
}
.risk-ring__item {
  position: absolute;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a1931;
  padding: 5px 10px;
  background-color: #ffffff;
  border: 1px solid #f8f9fa;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.risk-ring__item--central {
  font-size: 1rem;
  background-color: #ffc300;
  color: #ffffff;
  border-color: #ffc300;
  padding: 8px 15px;
  z-index: 10;
}
.risk-ring__item:nth-child(1) {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.risk-ring__item:nth-child(3) {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.risk-ring__item:nth-child(4) {
  top: 40px;
  right: -40px;
}
.risk-ring__item:nth-child(5) {
  bottom: 40px;
  left: -40px;
}

/* EXPERTISE AREAS (Cards) */
.expertise-areas__heading {
  margin-bottom: 3rem;
}

.expertise-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: #ffffff;
  border-top: 5px solid #0a1931;
  box-shadow: 0 4px 15px rgba(10, 25, 49, 0.05);
  transition: transform 0.3s ease;
}
.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
}
.expertise-card--secondary {
  border-top-color: #0077b6;
}
.expertise-card--accent {
  border-top-color: #ffc300;
}
.expertise-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  color: #0077b6;
}
.expertise-card--accent .expertise-card__icon {
  color: #ffc300;
}
.expertise-card__title {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  color: #0a1931;
}
.expertise-card__description {
  color: #555555;
}

/* RISK METHODOLOGY (Dark Background Flow) */
.risk-methodology {
  padding: 6rem 0;
}
.risk-methodology__heading {
  margin-bottom: 3rem;
}
.risk-methodology .steps-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .risk-methodology .steps-flow {
    flex-direction: row;
    justify-content: space-between;
  }
}
.risk-methodology .steps-flow__item {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-bottom: 3px solid #ffc300;
  position: relative;
}
@media (min-width: 768px) {
  .risk-methodology .steps-flow__item--arrow::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #0077b6;
    font-weight: 700;
    line-height: 1;
  }
}
.risk-methodology .steps-flow__number {
  color: #0077b6;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1.15rem;
}
.risk-methodology .steps-flow__text {
  color: rgb(49.8644067797, 112.6610169492, 213.1355932203);
  font-size: 0.9rem;
}
.risk-methodology__cta {
  margin-top: 4rem;
}

/* CRISIS MANAGEMENT BLOCK */
.crisis-management__heading {
  margin-bottom: 2rem;
}
.crisis-management__flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .crisis-management__flex {
    flex-direction: row;
    align-items: center;
  }
}
.crisis-management__text-content {
  flex: 1.5;
}
.crisis-management__image-wrapper {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .crisis-management__image-wrapper {
    max-width: 45%;
  }
}
.crisis-management__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 25, 49, 0.1);
}
.crisis-management__list {
  list-style: none;
  padding: 1rem 0 0 0;
}
.crisis-management__list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #333333;
}
.crisis-management__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0077b6;
  font-weight: 900;
  font-size: 1.2rem;
}
.crisis-management__list li strong {
  font-weight: 700;
  color: #0a1931;
}

/* HR INTRO (TEXT + IMAGE + STATS) */
.hr-intro {
  padding-bottom: 2rem;
}
.hr-intro__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .hr-intro__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.hr-intro__content {
  flex: 1.5;
  order: 1;
}
@media (min-width: 1024px) {
  .hr-intro__content {
    order: 0;
  }
}
.hr-intro__heading {
  text-align: left !important;
  margin-bottom: 1.5rem;
}
.hr-intro__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1.5rem;
}
.hr-intro__image-wrapper {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .hr-intro__image-wrapper {
    max-width: 45%;
  }
}
.hr-intro__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.1);
}

/* HR Stat Bar */
.hr-intro__stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hr-intro__stat-item {
  background-color: #ffc300;
  color: #0a1931;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(255, 195, 0, 0.3);
}

/* SOLUTION AREAS (HR Focus Items) */
.solution-areas__heading {
  margin-bottom: 3rem;
}

.hr-focus-item {
  padding: 1.5rem;
  border: 1px solid #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(10, 25, 49, 0.05);
}
.hr-focus-item:hover {
  transform: translateY(-5px);
}
.hr-focus-item--primary {
  border-bottom: 5px solid #0a1931;
}
.hr-focus-item--secondary {
  border-bottom: 5px solid #0077b6;
}
.hr-focus-item--accent {
  border-bottom: 5px solid #ffc300;
}
.hr-focus-item__title {
  font-size: 1.3rem;
  color: #0a1931;
  margin-bottom: 0.5rem;
}
.hr-focus-item__description {
  color: #555555;
}

/* HR METHODOLOGY (Dark Background List) */
.hr-methodology {
  padding: 6rem 0;
}
.hr-methodology__container {
  max-width: 900px;
  margin: 0 auto;
}
.hr-methodology__heading {
  margin-bottom: 2rem;
}
.hr-methodology__list {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}
.hr-methodology__list li {
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.15rem;
  position: relative;
  padding-left: 2rem;
}
.hr-methodology__list li:last-child {
  border-bottom: none;
}
.hr-methodology__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0077b6;
  font-weight: 700;
  font-size: 1.25rem;
}
/* CASE STUDY BLOCK */
.case-study__heading {
  margin-bottom: 3rem;
}
.case-study__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .case-study__content {
    flex-direction: row;
  }
}
.case-study__challenge, .case-study__solution, .case-study__result {
  flex: 1;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(10, 25, 49, 0.08);
  border-top: 5px solid #f8f9fa;
}
.case-study__challenge {
  border-top-color: #0a1931;
}
.case-study__solution {
  border-top-color: #0077b6;
}
.case-study__result {
  border-top-color: #ffc300;
}
.case-study__result h3 {
  color: #ffc300;
}
.case-study h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0a1931;
}
.case-study p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
}

/* =======================================
   PRIVACY POLICY / LEGAL PAGE SPECIFIC STYLES
   ======================================= */
/* HERO MODIFIER FOR LEGAL PAGES */
.hero--legal {
  height: 40vh;
  min-height: 250px;
}
.hero--legal .hero__title {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .hero--legal .hero__title {
    font-size: 3rem;
  }
}

/* POLICY CONTENT BLOCK */
.policy-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f8f9fa;
}
.policy-section:last-child {
  border-bottom: none;
}
.policy-section--important {
  background-color: rgb(156.5, 220.9038461538, 255);
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid #0077b6;
}
.policy-section__heading {
  font-family: "Epilogue", sans-serif;
  font-size: 1.75rem;
  color: #0a1931;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ffc300;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.policy-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #555555;
}
.policy-section strong {
  color: #0077b6;
}

.policy-list {
  margin-left: 1.5rem;
  padding: 0.5rem 0;
}
.policy-list li {
  list-style: disc;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #333333;
}
.policy-list li strong {
  color: #0a1931;
}

/* CTA MODIFIER FOR LEGAL PAGES */
.cta__container--banner {
  background-size: cover;
  background-position: center center;
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  /* Dark Overlay for better text readability */
}
.cta__container--banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 25, 49, 0.75);
  z-index: 1;
}
.cta__container--banner > * {
  position: relative;
  z-index: 2;
}
.cta__container--banner .cta__title {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.cta__container--banner .cta__text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.policy-list--violations {
  list-style: none;
  margin-left: 0;
}
.policy-list--violations li {
  padding-left: 1.5rem;
  position: relative;
}
.policy-list--violations li::before {
  content: "🚫";
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.contact-info {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #f8f9fa;
  border-left: 5px solid #ffc300;
  border-radius: 8px;
  line-height: 1.8;
}
.contact-info strong {
  display: block;
  color: #0a1931;
  margin-bottom: 0.5rem;
}

.cookie-type-grid {
  margin-top: 1.5rem;
}

.cookie-type-card {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #ffffff;
  border-left: 4px solid #0a1931;
  box-shadow: 0 2px 10px rgba(10, 25, 49, 0.05);
}
.cookie-type-card--secondary {
  border-left-color: #0077b6;
}
.cookie-type-card__title {
  font-size: 1.25rem;
  color: #0a1931;
  margin-bottom: 0.5rem;
}
.cookie-type-card__description {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
}
.cookie-type-card__description strong {
  color: #ffc300;
}

/* =======================================
   COOKIE BANNER AND MODAL STYLES
   ======================================= */
/* --- 1. COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0a1931; /* Match the dark theme */
  color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease-out;
  /* Initially hidden - JS will show it */
  /* Specific button styles */
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookie-banner__text-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-banner__text-wrapper {
    text-align: left;
  }
}
.cookie-banner__icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  display: none;
}
@media (min-width: 768px) {
  .cookie-banner__icon {
    display: block;
  }
}
.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.cookie-banner__link {
  color: #ffc300;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.cookie-banner__button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.cookie-banner .button--outline-primary {
  background-color: transparent;
  border-color: #ffc300;
  color: #ffc300;
}
.cookie-banner .button--outline-primary:hover {
  background-color: #ffc300;
  color: #0a1931;
}

/* --- 2. COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 49, 0.85); /* Dark semi-transparent overlay */
  z-index: 1001;
  display: none; /* Controlled by JS */
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}
.cookie-modal[aria-hidden=false] {
  display: flex;
}
.cookie-modal__dialog {
  background-color: #ffffff;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cookie-modal[aria-hidden=false] .cookie-modal__dialog {
  transform: scale(1);
  opacity: 1;
}
.cookie-modal__header {
  padding: 1.5rem;
  border-bottom: 1px solid #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal__title {
  margin: 0;
  font-size: 1.5rem;
  color: #0a1931;
}
.cookie-modal__close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #555555;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.cookie-modal__close-btn:hover {
  color: #0077b6;
}
.cookie-modal__body {
  padding: 1.5rem;
}
.cookie-modal__body > p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.cookie-modal__toggle-group {
  display: grid;
  grid-template-areas: "label status toggle" "info info info";
  grid-template-columns: 1fr auto 50px;
  gap: 0.5rem 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f8f9fa;
}
.cookie-modal__toggle-group:last-of-type {
  border-bottom: none;
}
.cookie-modal__toggle-group input[type=checkbox] {
  grid-area: toggle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  background: #555555;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-modal__toggle-group input[type=checkbox]::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}
.cookie-modal__toggle-group input[type=checkbox]:checked {
  background: #0077b6;
}
.cookie-modal__toggle-group input[type=checkbox]:checked::before {
  transform: translateX(20px);
}
.cookie-modal__toggle-group input[type=checkbox]:disabled {
  background: #f8f9fa;
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-modal__label {
  grid-area: label;
  font-weight: 700;
  color: #0a1931;
}
.cookie-modal__status {
  grid-area: status;
  font-size: 0.8rem;
  font-style: italic;
  color: #555555;
}
.cookie-modal__info {
  grid-area: info;
  font-size: 0.85rem;
  color: #555555;
  margin: 0;
  padding-top: 0.5rem;
}
.cookie-modal__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #f8f9fa;
  text-align: right;
}

.cta__container {
  text-align: center;
}