.navbar {
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.navbar-brand .navbar-logo {
  height: 30px;
  width: auto;
  display: block;
}
.navbar-brand a {
  text-decoration: none;
}
.navbar-brand a h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1B4B8F;
  margin: 0;
}
.navbar-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 40px;
  height: 40px;
  position: relative;
}
.navbar-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1B4B8F;
  position: absolute;
  left: 8px;
  transition: all 0.3s ease;
}
.navbar-burger span:nth-child(1) {
  top: 12px;
}
.navbar-burger span:nth-child(2) {
  top: 19px;
}
.navbar-burger span:nth-child(3) {
  top: 26px;
}
.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.navbar-menu {
  display: flex;
  gap: 1rem;
}
.navbar-menu .nav-link {
  font-family: 'Roboto', sans-serif;
  color: #424d59;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}
.navbar-menu .nav-link:hover {
  color: #1B4B8F;
}
.navbar-menu .nav-link[aria-current="page"] {
  color: #1B4B8F;
  font-weight: 700;
}
.navbar-menu .nav-link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #1B4B8F;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  animation: linkIndicator 0.3s ease forwards;
}
@keyframes linkIndicator {
  from {
    width: 0;
  }
  to {
    width: calc(100% - (0.5rem * 2));
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }
  .navbar-burger {
    display: block;
    margin-left: auto;
  }
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .navbar-menu.is-active {
    display: flex;
  }
  .navbar-menu .nav-link {
    padding: 0.5rem;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .navbar-menu .nav-link[aria-current="page"] {
    background-color: rgba(27, 75, 143, 0.1);
  }
  .navbar-menu .nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #1B4B8F;
    animation: none;
  }
}
.hero-banner {
  background-color: #1B4B8F;
  color: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  bottom: 0;
  width: 80%;
  height: 100%;
  margin: auto;
  max-width: 400px;
  background-image: url('/assets/icons/logo-transparent.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.3;
  z-index: 1;
}
.hero-banner .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.hero-banner .text-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-banner .text-content h1 span {
  color: #276dcf;
}
.hero-banner .text-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-banner {
    padding: 3rem 0;
  }
  .hero-banner::after {
    max-width: 280px;
    opacity: 0.1;
  }
  .hero-banner .text-content h1 {
    font-size: 2.8rem;
  }
  .hero-banner .text-content p {
    font-size: 16px;
    max-width: 100%;
  }
}
.contact-banner {
  background-color: #1B4B8F;
  color: #FFFFFF;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}
.contact-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.02) 55%, transparent 100%);
  animation: waveMoveLight 12s ease-in-out infinite;
  pointer-events: none;
}
.contact-banner .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-banner .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-banner .contact-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.contact-banner .contact-item i {
  font-size: 14px;
  width: 20px;
  text-align: center;
}
.contact-banner .contact-item a,
.contact-banner .contact-item address {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-style: normal;
  margin: 0;
}
.contact-banner .contact-item a:hover,
.contact-banner .contact-item address:hover {
  text-decoration: underline;
}
.contact-banner .social-links {
  display: flex;
  gap: 1rem;
}
.contact-banner .social-links .social-link {
  color: #FFFFFF;
  font-size: 18px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.contact-banner .social-links .social-link:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.2);
}
.contact-banner .social-links .social-link i {
  font-size: 18px;
}
@keyframes waveMoveLight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 768px) {
  .contact-banner .container {
    justify-content: center;
    text-align: center;
  }
  .contact-banner .contact-info {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .contact-banner .contact-item {
    justify-content: center;
  }
  .contact-banner .social-links {
    width: 100%;
    justify-content: center;
  }
}
.map-section {
  padding: 1.5rem 0;
  background-color: rgba(27, 75, 143, 0.02);
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(27, 75, 143, 0.02) 45%, rgba(27, 75, 143, 0.03) 50%, rgba(27, 75, 143, 0.02) 55%, transparent 100%);
  animation: waveMoveSoft 15s ease-in-out infinite;
  pointer-events: none;
}
.map-container {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-container .map-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  max-width: 280px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}
.map-container .map-overlay:hover {
  transform: translateY(-2px);
}
.map-container .map-info h3 {
  color: #1B4B8F;
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.map-container .map-info h3::before {
  content: '';
  display: block;
  width: 3px;
  height: 16px;
  background-color: #1B4B8F;
  border-radius: 4px;
}
.map-container .map-info address {
  font-style: normal;
  margin-bottom: 1rem;
  color: #424d59;
  font-size: 14px;
}
.map-container .map-info address p {
  margin: 0;
  line-height: 1.5;
}
.map-container .map-info address p:first-child {
  color: #1B4B8F;
  font-weight: 500;
}
.map-container .map-info .directions-button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: #1B4B8F;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}
.map-container .map-info .directions-button i {
  font-size: 16px;
}
.map-container .map-info .directions-button:hover {
  background-color: #0f294f;
  transform: translateY(-1px);
}
.map-container .map-info .directions-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .map-container {
    height: 280px;
  }
  .map-container .map-overlay {
    position: relative;
    top: auto;
    right: auto;
    max-width: none;
    margin: -40px 1rem 1rem;
    border-radius: 4px;
  }
}
.footer {
  background-color: #171a1e;
  color: #a8b3bf;
  padding: 1.5rem 0;
  font-size: 14px;
  margin-top: 2rem;
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .footer-links,
.footer .footer-credits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 1rem;
}
.footer .footer-links.footer-links,
.footer .footer-credits.footer-links {
  gap: 0.25rem 1.5rem;
}
.footer .footer-links.footer-credits,
.footer .footer-credits.footer-credits {
  gap: 0.25rem 0.5rem;
}
.footer a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer a:hover {
  color: #276dcf;
  text-decoration: underline;
}
.footer .separator {
  color: #424d59;
}
.footer .footer-credits span {
  color: #a8b3bf;
}
.footer .footer-credits a {
  font-weight: 500;
  color: #FFFFFF;
}
.hero-banner {
  background-color: #1B4B8F;
  color: #FFFFFF;
  padding: 4rem 0;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 45%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 55%, transparent 100%);
  animation: waveMove 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-banner .container {
  max-width: 900px;
  margin: 0 auto;
}
.hero-banner h1 {
  color: #FFFFFF;
  margin-bottom: 2rem;
  font-size: 3.75rem;
  line-height: 1.1;
}
.hero-banner h1 span {
  color: #a8b3bf;
}
.hero-banner p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.3px;
  opacity: 0.95;
}
.hero-banner p:last-child {
  margin-bottom: 0;
}
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
.for-who {
  padding: 2rem 0;
}
.for-who h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.for-who-grid .card {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.for-who-grid .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.for-who-grid .card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
}
.for-who-grid .card-content h3 {
  color: #FFFFFF;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.for-who-grid .card:hover .card-bg {
  transform: scale(1.1);
}
.testimonials {
  background-color: #a8b3bf;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.02) 55%, transparent 100%);
  animation: waveMoveSoft 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 5%;
  font-size: 12rem;
  color: rgba(0, 0, 0, 0.03);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  z-index: 0;
}
.testimonials .container {
  position: relative;
  z-index: 2;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.testimonials-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 1.5rem;
}
.testimonials-carousel .testimonial {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin: 1rem;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.testimonials-carousel .testimonial.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.testimonials-carousel .testimonial p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #424d59;
  position: relative;
  padding: 0 1rem;
}
.testimonials-carousel .testimonial .author {
  font-weight: 700;
  color: #1B4B8F;
  font-size: 16px;
  position: relative;
  padding-top: 1rem;
}
.testimonials-carousel .testimonial .author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #1B4B8F;
  opacity: 0.3;
}
.testimonials-carousel .carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonials-carousel .carousel-nav button {
  background: none;
  border: none;
  color: #1B4B8F;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.testimonials-carousel .carousel-nav button i {
  font-size: 16px;
}
.testimonials-carousel .carousel-nav button:hover {
  background-color: #1B4B8F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.testimonials-carousel .carousel-nav button:active {
  transform: translateY(0);
}
@keyframes waveMoveSoft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
.what-is-apa {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  background-color: rgba(27, 75, 143, 0.02);
  position: relative;
  overflow: hidden;
}
.what-is-apa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(27, 75, 143, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.what-is-apa-content {
  padding-left: 2rem;
}
.what-is-apa-content h2 {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #1B4B8F;
  position: relative;
}
.what-is-apa-content h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #1B4B8F;
  opacity: 0.3;
}
.what-is-apa-content p {
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.7;
}
.what-is-apa-content p:last-of-type {
  margin-bottom: 1.5rem;
}
.what-is-apa-content .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background-color: #1B4B8F;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(27, 75, 143, 0.2);
}
.what-is-apa-content .cta-button:hover {
  background-color: #0f294f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 75, 143, 0.3);
}
.what-is-apa-content .cta-button:active {
  transform: translateY(0);
}
.what-is-apa-content .cta-button i {
  margin-left: 0.5rem;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.what-is-apa-content .cta-button:hover i {
  transform: translateX(4px);
}
.what-is-apa .image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.what-is-apa .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.what-is-apa .image-wrapper img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .hero-banner {
    padding: 2rem 0;
  }
  .hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-banner p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
  .what-is-apa {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
    text-align: left;
  }
  .what-is-apa-content {
    padding: 0 1rem;
  }
  .what-is-apa-content h2 {
    font-size: 2rem;
    text-align: left;
  }
  .what-is-apa-content h2::after {
    left: 0;
    transform: none;
  }
  .what-is-apa-content p {
    font-size: 16px;
    line-height: 1.6;
  }
  .what-is-apa .image-wrapper {
    order: -1;
    margin-bottom: 1rem;
    padding-bottom: 62.5%;
  }
  .testimonials {
    padding: 2rem 0;
  }
  .testimonials::before {
    font-size: 8rem;
  }
  .testimonials-carousel {
    padding: 0 1rem;
  }
  .testimonials-carousel .testimonial {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  .testimonials-carousel .testimonial p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
  }
  .testimonials-carousel .carousel-nav {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .testimonials-carousel .carousel-nav button {
    width: 40px;
    height: 40px;
  }
}
about-header {
  display: block;
  width: 100%;
}
about-header .header-container {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
}
about-header .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
about-header .content {
  text-align: center;
  padding: 1.5rem;
  max-width: 800px;
  position: relative;
  z-index: 1;
}
about-header .content-background {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(3px);
}
about-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1B4B8F;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}
about-header .subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.2s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  about-header .header-container {
    height: 50vh;
  }
  about-header h1 {
    font-size: 2rem;
  }
  about-header .subtitle {
    font-size: 1.2rem;
  }
  about-header .content-background {
    padding: 1rem;
  }
}
about-intro {
  display: block;
  padding: 2rem 1rem;
}
about-intro .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
about-intro .text-content {
  opacity: 0;
  transform: translateX(-20px);
}
about-intro .text-content.visible {
  animation: slideIn 0.8s ease forwards;
}
about-intro .image-container {
  position: relative;
  opacity: 0;
  transform: translateX(20px);
}
about-intro .image-container.visible {
  animation: slideIn 0.8s ease forwards 0.2s;
}
about-intro img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
about-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #1B4B8F;
}
about-intro p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #424d59;
  margin-bottom: 1rem;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  about-intro .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  about-intro h2 {
    font-size: 1.75rem;
  }
}
about-experience {
  display: block;
  padding: 2rem 1rem;
  position: relative;
  background: #a8b3bf;
  overflow: hidden;
}
about-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(168, 179, 191, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(168, 179, 191, 0) 75%);
  background-size: 400% 400%;
  animation: gradientWave 15s ease-in-out infinite;
  z-index: 1;
}
about-experience .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
about-experience h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #1B4B8F;
}
about-experience .timeline {
  position: relative;
  padding: 1.5rem 0;
}
about-experience .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #a8b3bf;
}
about-experience .timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(-50px);
}
about-experience .timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
  transform: translateX(50px);
}
about-experience .timeline-item.visible {
  animation: slideIn 0.8s ease forwards;
}
about-experience .timeline-content {
  width: 80%;
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
about-experience .timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
about-experience .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #1B4B8F;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
}
about-experience h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1B4B8F;
}
about-experience p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #424d59;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes gradientWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 768px) {
  about-experience .timeline::before {
    left: 0;
  }
  about-experience .timeline-item,
  about-experience .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 40px;
  }
  about-experience .timeline-dot {
    left: 0;
  }
  about-experience .timeline-content {
    width: 100%;
  }
}
about-vision {
  display: block;
  padding: 2rem 1rem;
}
about-vision .container {
  max-width: 1200px;
  margin: 0 auto;
}
about-vision .header {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
about-vision .header.visible {
  animation: fadeInUp 0.8s ease forwards;
}
about-vision h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #1B4B8F;
}
about-vision .subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #424d59;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
about-vision .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
about-vision .card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
about-vision .card.visible {
  animation: fadeInUp 0.8s ease forwards;
}
about-vision .card:hover {
  transform: translateY(-10px);
}
about-vision .card-icon {
  font-size: 2.5rem;
  color: #1B4B8F;
  margin-bottom: 1.5rem;
}
about-vision .card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #171a1e;
  margin-bottom: 1rem;
}
about-vision .card p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #424d59;
  line-height: 1.6;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  about-vision .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  about-vision .cards {
    grid-template-columns: 1fr;
  }
  about-vision h2 {
    font-size: 2rem;
  }
}
.about-page {
  display: block;
  width: 100%;
  overflow-x: hidden;
}
apa-hero .hero-banner h1 {
  font-size: 2rem;
}
apa-hero .hero-banner p {
  color: #a8b3bf;
}
.apa-hero {
  padding: 2rem 0;
  background-color: #a8b3bf;
}
.apa-hero .hero-content {
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.apa-hero .hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  color: #1B4B8F;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}
.apa-hero .hero-content .hero-subtitle {
  font-size: 18px;
  color: #424d59;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}
.apa-hero .hero-content .hero-image {
  max-width: 800px;
  margin: 0 auto;
}
.apa-hero .hero-content .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.apa-description {
  padding: 2rem 0;
  background-color: #FFFFFF;
}
.apa-description__top-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .apa-description__top-layout {
    grid-template-columns: 1fr 1fr;
  }
}
.apa-description__image-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .apa-description__image-wrapper {
    margin-bottom: 0;
  }
}
.apa-description__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.apa-description__intro-text h2 {
  font-family: 'Montserrat', sans-serif;
  color: #1B4B8F;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.apa-description__intro-text p {
  color: #424d59;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
}
.apa-description__examples {
  background-color: #a8b3bf;
  padding: 2rem;
  border-radius: 12px;
}
.apa-description__examples h3 {
  color: #1B4B8F;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 500;
}
.apa-description__examples p {
  margin-bottom: 0.5rem;
  color: #424d59;
  font-family: 'Roboto', sans-serif;
}
.apa-description__examples-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
.apa-description__examples-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  color: #424d59;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}
.apa-description__examples-list li i {
  color: #1B4B8F;
  margin-right: 0.5rem;
  margin-top: 4px;
  font-size: 1.1em;
}
.apa-description__examples-list li span {
  flex: 1;
}
.apa-description__highlight {
  font-weight: 500;
  color: #1B4B8F;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #276dcf;
}
.apa-target-audience {
  padding: 2rem 0;
  background-color: #a8b3bf;
}
.apa-target-audience .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.apa-target-audience .container h2 {
  font-family: 'Montserrat', sans-serif;
  color: #1B4B8F;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}
.apa-target-audience .container .section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #424d59;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}
.apa-target-audience .container .audience-grid {
  display: block;
  margin-bottom: 2rem;
}
.apa-target-audience .container .audience-grid .audience-card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  scroll-margin-top: 80px;
}
.apa-target-audience .container .audience-grid .audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.apa-target-audience .container .audience-grid .audience-card i {
  font-size: 1.8rem;
  color: #1B4B8F;
  margin-right: 1.5rem;
  margin-top: 2px;
  min-width: 30px;
  text-align: center;
}
.apa-target-audience .container .audience-grid .audience-card .card-text-content {
  flex: 1;
}
.apa-target-audience .container .audience-grid .audience-card .card-text-content h3 {
  color: #1B4B8F;
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.75rem;
  font-weight: 500;
}
.apa-target-audience .container .audience-grid .audience-card .card-text-content p {
  color: #424d59;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}
.apa-target-audience .container .special-card {
  background-color: #276dcf;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
  scroll-margin-top: 80px;
}
.apa-target-audience .container .special-card i {
  font-size: 2.5rem;
  color: #1B4B8F;
  margin-bottom: 1rem;
}
.apa-target-audience .container .special-card h3 {
  color: #0f294f;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 500;
}
.apa-target-audience .container .special-card p {
  color: #FFFFFF;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
}
.apa-target-audience .container .cta-section {
  text-align: center;
  margin-top: 2rem;
  padding: 0;
}
.apa-target-audience .container .cta-section h3 {
  padding: 0 1rem;
  color: #1B4B8F;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 500;
}
.apa-target-audience .container .cta-section p:not(.cta-highlight) {
  padding: 0 1rem;
  color: #424d59;
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}
.apa-target-audience .container .cta-section .cta-box {
  background-color: #FFFFFF;
  padding: 2rem 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}
.apa-target-audience .container .cta-section .cta-box p {
  color: #424d59;
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}
.apa-target-audience .container .cta-section .cta-box p.cta-highlight {
  color: #1B4B8F;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .apa-hero,
  .apa-description,
  .apa-target-audience {
    padding: 1.5rem 0;
  }
  .examples {
    grid-template-columns: 1fr !important;
  }
}
.prescription-content {
  padding: 2rem 0;
}
.prescription-content__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .prescription-content__header {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
}
.prescription-content__text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1B4B8F;
  margin-bottom: 1rem;
  font-weight: 700;
}
.prescription-content__text p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #424d59;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.prescription-content__text p:last-of-type {
  margin-bottom: 0;
}
.prescription-content__text p strong {
  color: #0f294f;
  font-weight: 500;
}
.prescription-content__image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.prescription-content__details {
  display: grid;
  gap: 2rem;
}
.prescription-content__block {
  background-color: #b7c0ca;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 5px solid #1B4B8F;
}
.prescription-content__block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #1B4B8F;
  margin-bottom: 1rem;
  font-weight: 500;
}
.prescription-content__block p,
.prescription-content__block li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #424d59;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.prescription-content__block ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}
.prescription-content__block ul li {
  padding-left: 1.5rem;
  position: relative;
}
.prescription-content__block ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1B4B8F;
  position: absolute;
  left: 0;
  top: 4px;
}
.prescription-content__block em {
  font-style: italic;
  color: #171a1e;
}
.prescription-content__info-box,
.prescription-content__tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
}
.prescription-content__info-box i,
.prescription-content__tip-box i {
  font-size: 1.5em;
  margin-top: 3px;
}
.prescription-content__info-box p,
.prescription-content__tip-box p {
  margin-bottom: 0;
}
.prescription-content__info-box p strong,
.prescription-content__tip-box p strong {
  font-weight: 500;
}
.prescription-content__info-box {
  background-color: #77a5e5;
  border-left: 4px solid #1B4B8F;
}
.prescription-content__info-box i {
  color: #1B4B8F;
}
.prescription-content__info-box p strong {
  color: #0f294f;
}
.prescription-content__tip-box {
  background-color: #fff3b3;
  border-left: 4px solid #FFBF00;
}
.prescription-content__tip-box i {
  color: #FFBF00;
}
.prescription-content__tip-box p strong {
  color: #cc9900;
}
.cabinet-content {
  padding: 2rem 0;
}
.cabinet-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1B4B8F;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.cabinet-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #1B4B8F;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  border-bottom: 2px solid #276dcf;
  padding-bottom: 0.5rem;
}
.cabinet-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #424d59;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.cabinet-content strong {
  font-weight: 500;
}
.cabinet-content__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .cabinet-content__intro {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
}
.cabinet-content__intro-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cabinet-content__section {
  margin-bottom: 2rem;
}
.cabinet-content__section:last-child {
  margin-bottom: 0;
}
.cabinet-content__steps {
  display: grid;
  gap: 1.5rem;
}
.cabinet-content__step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #b7c0ca;
  padding: 1rem;
  border-radius: 4px;
  border-left: 4px solid #276dcf;
}
.cabinet-content__step-item i {
  color: #1B4B8F;
  font-size: 1.8em;
  margin-top: 4px;
}
.cabinet-content__step-item p {
  margin-bottom: 0.25rem;
}
.cabinet-content__step-item small {
  color: #171a1e;
  font-size: 14px;
}
.cabinet-content__step-item a {
  color: #0f294f;
  text-decoration: none;
  font-weight: 500;
}
.cabinet-content__step-item a:hover {
  text-decoration: underline;
}
.cabinet-content__activities-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.cabinet-content__activities-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  color: #171a1e;
}
.cabinet-content__activities-list li i {
  color: #1B4B8F;
  font-size: 1.2em;
  width: 20px;
  text-align: center;
}
.cabinet-content__table-wrapper {
  overflow-x: auto;
  margin-top: 1rem;
}
.cabinet-content__tarifs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.cabinet-content__tarifs-table th,
.cabinet-content__tarifs-table td {
  padding: 1rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid #a8b3bf;
}
.cabinet-content__tarifs-table thead {
  background-color: #1B4B8F;
  color: #FFFFFF;
}
.cabinet-content__tarifs-table thead th {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-bottom: 0;
}
.cabinet-content__tarifs-table tbody tr:nth-child(even) {
  background-color: #bdc5ce;
}
.cabinet-content__tarifs-table tbody tr:hover {
  background-color: #8db3e9;
}
.cabinet-content__tarifs-table tbody td {
  color: #171a1e;
}
@media (max-width: 768px) {
  .cabinet-content__tarifs-table tbody td {
    display: block;
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-bottom: none;
  }
  .cabinet-content__tarifs-table tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 0.5rem;
    width: 45%;
    padding-right: 0.5rem;
    white-space: nowrap;
    text-align: left;
    font-weight: 700;
    color: #1B4B8F;
  }
  .cabinet-content__tarifs-table tbody td:not(:last-child) {
    border-bottom: 1px solid #a8b3bf;
  }
}
@media (max-width: 768px) {
  .cabinet-content__tarifs-table thead {
    display: none;
  }
  .cabinet-content__tarifs-table tbody tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid #a8b3bf;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  .cabinet-content__tarifs-table tbody tr:last-child {
    margin-bottom: 0;
  }
}
.cabinet-content__practical-info {
  background-color: #b7c0ca;
  padding: 1.5rem;
  border-radius: 8px;
}
.cabinet-content__practical-info ul {
  list-style: none;
  padding-left: 0;
}
.cabinet-content__practical-info ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.cabinet-content__practical-info ul li:last-child {
  margin-bottom: 0;
}
.cabinet-content__practical-info ul li i {
  color: #1B4B8F;
  font-size: 1.3em;
  width: 25px;
  text-align: center;
}
.cabinet-content__flyer-section {
  text-align: center;
}
.cabinet-content__flyer-section h2 {
  margin-bottom: 0.5rem;
}
.cabinet-content__flyer-section p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  color: #171a1e;
}
.cabinet-content__flyer-image img {
  display: block;
  max-width: 100%;
  width: auto;
  max-height: 500px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.contact-section {
  padding: 3rem 0;
  background-color: #FFFFFF;
}
.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-text {
  margin-bottom: 3rem;
}
.contact-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1B4B8F;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #424d59;
  line-height: 1.65;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.contact-direct-info {
  background-color: #b7c0ca;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: none;
  border-top: 3px solid #276dcf;
  display: inline-block;
  text-align: left;
  margin-bottom: 3rem;
  max-width: 100%;
}
.contact-direct-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 16px;
  color: #171a1e;
}
.contact-direct-info p:last-child {
  margin-bottom: 0;
}
.contact-direct-info p i {
  color: #1B4B8F;
  font-size: 1.1em;
  width: 18px;
  text-align: center;
}
.contact-direct-info p a {
  color: #0f294f;
  text-decoration: none;
  font-weight: 500;
}
.contact-direct-info p a:hover {
  text-decoration: underline;
}
.contact-form {
  background-color: transparent;
  padding: 1.5rem 0;
  border: none;
  box-shadow: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.contact-form h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  color: #1B4B8F;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center;
}
.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}
.form-group label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #424d59;
  margin-bottom: 0.25rem;
  font-size: 14px;
}
.form-group label .required-indicator {
  color: #a8b3bf;
  font-size: 14px;
  font-weight: 400;
  margin-left: 0.25rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.5rem 0 0.25rem 0;
  border: none;
  border-bottom: 1px solid #a8b3bf;
  border-radius: 0;
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #171a1e;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  box-shadow: none;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1B4B8F;
  box-shadow: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.submit-button {
  display: inline-block;
  width: auto;
  padding: 0.5rem 2rem;
  background-color: #1B4B8F;
  color: #FFFFFF;
  border: 1px solid #1B4B8F;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  margin-top: 1rem;
  /*
    background-color: transparent;
    color: @color-primary;
    border: 1px solid @color-primary;
    &:hover {
        background-color: @color-primary;
        color: @color-white;
    }
    */
}
.submit-button:hover {
  background-color: #0f294f;
  border-color: #0f294f;
}
.submit-button:active {
  transform: translateY(1px);
}
@media (max-width: 576px) {
  .submit-button {
    width: 100%;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  color: #424d59;
  background-color: #FFFFFF;
}
body {
  overflow-x: hidden;
  padding-top: 60px;
  font-family: 'Roboto', sans-serif;
  color: #424d59;
  background-color: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: #1B4B8F;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.text-center {
  text-align: center;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 2rem;
}
.for-who {
  background-color: #a8b3bf;
  padding: 2rem 0;
}
.for-who h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.for-who .for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.for-who .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.for-who .card-link .card {
  position: relative;
  z-index: 2;
}
.for-who .card-link .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
  filter: brightness(0.7);
}
.for-who .card-link .card-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.for-who .card-link .card-content h3 {
  color: #FFFFFF;
  margin: 0;
  font-size: 1.75rem;
}
.for-who .card-link:hover,
.for-who .card-link:focus {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.for-who .card-link:hover .card-bg,
.for-who .card-link:focus .card-bg {
  transform: scale(1.05);
  filter: brightness(0.5);
}
