/* Original Fininvest Theme - Converted to Pure HTML/CSS */

/* Import original font */
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;600&display=swap");

/* Original CSS Variables */
:root {
  --primary-green: #1ab2ef;
  --primary-gren: #71d6dc;
  --primary-blue: #005879;
  --secondary-blue: #14bee8;
  --secondary-light-blue: #e0f0ff;
  --grey-0: #ffffff;
  --grey-25: #f7f7f9;
  --grey-50: #8a8f92;
  --grey-100: #050b16;
  --font-fininvest: "Mulish", sans-serif;
  --h1Size: 92px;
  --h2Size: 82px;
  --h2btwSize: 60px;
  --h3Size: 42px;
  --h3btwSize: 36px;
  --h4Size: 32px;
  --h5Size: 24px;
  --h6Size: 18px;
  --h7Size: 14px;
  --h8Size: 12px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  position: relative;
  background-color: #ffffff;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-fininvest);
  line-height: 1.6;
  color: var(--grey-100);
  background-color: #ffffff;
  margin: 0;
  min-height: 100vh;
}

/* Ensure main content areas have white background */
.site-main,
.entry-content,
.contactForm,
.titleCta,
.contactEmails {
  background-color: #ffffff;
}

/* Contact page specific background fixes */
.contactForm {
  background-color: #f8f9fa;
}

.contactFormTitle,
.contact-form,
.form-group,
.form-group input,
.form-group textarea {
  background-color: #ffffff;
}

/* Additional background fixes for contact page */
body.contact-page,
.contact-page body,
.contact-page .site-main,
.contact-page .entry-content,
.contact-page .titleCta,
.contact-page .contactEmails {
  background-color: #ffffff !important;
}

/* Ensure all text is readable */
.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page p,
.contact-page label,
.contact-page input,
.contact-page textarea {
  color: #333333 !important;
}

/* Fix any potential dark overlays */
.contact-page .headerHero::after {
  background: none !important;
}

/* Ensure form elements are properly styled */
.contact-page .form-group input,
.contact-page .form-group textarea {
  background-color: #ffffff !important;
  color: #333333 !important;
  border: 2px solid #e1e5e9 !important;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
  border-color: var(--primary-green) !important;
}

/* Typography */
h1 {
  font-size: var(--h1Size);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--grey-100);
}

h2 {
  font-size: var(--h2Size);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--grey-100);
}

h3 {
  font-size: var(--h3Size);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--grey-100);
}

h4 {
  font-size: var(--h4Size);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--grey-100);
}

h5 {
  font-size: var(--h5Size);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--grey-100);
}

h6 {
  font-size: var(--h6Size);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--grey-100);
}

p {
  margin-bottom: 1rem;
  color: var(--grey-50);
  font-size: 18px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-green);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
/* HEADER - Original WordPress behavior */

/* When page has slider/hero (transparent header) */
.hasSlider #masthead,
.hasHero #masthead {
  position: absolute;
  z-index: 10;
}

/* Navigation links white when transparent */
.hasSlider #site-navigation ul li a,
.hasHero #site-navigation ul li a {
  color: var(--grey-0);
}

/* Logo switching behavior */
.hasSlider .site-branding .color,
.hasHero .site-branding .color {
  display: none;
}

.hasSlider .site-branding .white,
.hasHero .site-branding .white {
  display: block;
}

/* When sticky, show colored logo */
.sticky .site-branding .color {
  display: block;
}

.sticky .site-branding .white {
  display: none;
}

/* Logo styling */
.site-branding img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

/* Make white logo actually white */
.site-branding .white {
  filter: brightness(0) invert(1);
}

/* Sticky header behavior */
.sticky #masthead {
  position: fixed;
  z-index: 10;
  top: 0;
  background-color: var(--grey-0);
  box-shadow: 0px 10px 18px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 10px 18px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 10px 18px 1px rgba(0, 0, 0, 0.2);
  animation: stickyAnimation 0.5s;
}

/* Navigation links dark when sticky */
.sticky.hasSlider #site-navigation ul li a,
.sticky.hasHero #site-navigation ul li a {
  color: var(--grey-100);
}

@keyframes stickyAnimation {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Base header structure */
#masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2em;
}

.site-branding,
.languageSwitch {
  width: 20%;
  padding: 2em;
}

.languageSwitch {
  display: flex;
  justify-content: flex-end;
}

.site-branding,
.register {
  width: 20%;
  padding: 2em;
}

.register {
  display: flex;
  justify-content: flex-end;
}

#site-navigation {
  display: flex;
  justify-content: center;
  flex: 1;
}

#site-navigation ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2rem;
}

/* Default navigation link color (for non-slider pages) */
#site-navigation ul li a {
  color: var(--grey-100);
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

#site-navigation ul li {
  list-style: none;
  margin: 0;
}

/* Current menu item and hover states */
#site-navigation .current-menu-item a,
.sticky.hasSlider #site-navigation ul li.current-menu-item a,
.sticky.hasHero #site-navigation ul li.current-menu-item a {
  border-bottom: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-weight: bold;
  padding-bottom: 0.2em;
}

/* Language Switch */
.languageSwitch {
  list-style: none;
}

.languageSwitch a,
.languageSwitch .current {
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.languageSwitch .current {
  padding-right: 24px;
  cursor: pointer;
}

.languageSwitch .current::after {
  content: "";
  position: absolute;
  background-image: url("assets/images/arrow-caret-down-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin: 0;
  position: absolute;
  top: 4px;
  right: 0px;
  transition-duration: 500ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Language switch dark when sticky */
.sticky .languageSwitch .current {
  color: var(--grey-100);
}

.sticky .languageSwitch .current::after {
  filter: invert(1);
}

/* register */
.register {
  list-style: none;
}

.register a,
.register .current {
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.register .current {
  padding-right: 24px;
  cursor: pointer;
}

.register .current::after {
  content: "";
  position: absolute;
  background-image: url("assets/images/arrow-caret-down-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin: 0;
  position: absolute;
  top: 4px;
  right: 0px;
  transition-duration: 500ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Language switch dark when sticky */
.sticky .register .current {
  color: var(--grey-100);
}

.sticky .register .current::after {
  filter: invert(1);
}


/* Page Header Swiper (Carousel) */
.pageHeaderSwiper {
  height: 80vh;
  min-height: 800px;
  border-bottom-right-radius: 20vw;
  position: relative;
  overflow: hidden;
}

.pageHeaderSwiper .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pageHeaderSwiper .content {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 10% 2em 10%;
  pointer-events: none;
  display: flex;
  z-index: 4;
}

.pageHeaderSwiper .content .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pageHeaderSwiper .content h2 {
  font-size: var(--h2Size);
  line-height: 1em;
  color: var(--grey-0);
  font-weight: normal;
  width: 85%;
}

.pageHeaderSwiper .content h3 {
  font-size: var(--h5Size);
  line-height: 1.3em;
  color: var(--grey-0);
  font-weight: normal;
  max-width: 500px;
  margin: auto;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.pageHeaderSwiper .arrow {
  pointer-events: all;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  color: var(--grey-0);
  position: absolute;
  top: 1em;
  right: -10%;
}

.pageHeaderSwiper .arrow .prev,
.pageHeaderSwiper .arrow .next {
  background-image: url("assets/images/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin: 0 5px;
  transition-duration: 250ms;
}

.pageHeaderSwiper .arrow .next:hover {
  transform: scale(1.25);
}

.pageHeaderSwiper .arrow .prev {
  transform: rotate(180deg);
}

.pageHeaderSwiper .arrow .prev:hover {
  transform: rotate(180deg) scale(1.25);
}

.pageHeaderSwiper .toBottom {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 2em;
  left: 2em;
  background-image: url("assets/images/arrow-circle-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition-duration: 500ms;
  transform: rotate(180deg) scale(1);
  z-index: 3;
}

.pageHeaderSwiper .toBottom:hover {
  transform: rotate(180deg) scale(1.1);
}

.logoOverlay {
  position: relative;
}

.logoOverlay::after {
  content: "";
  width: 120vw;
  height: 120vh;
  background-image: url("assets/images/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0vw;
  left: -10%;
  z-index: 2;
  transform: rotate(-15deg);
  pointer-events: none;
  opacity: 0.25;
  isolation: isolate;
  animation: homeLogoAnimation 1000ms ease-in-out;
}

@keyframes homeLogoAnimation {
  0% { opacity: 0; transform: translateX(500px) rotate(-20deg); }
  100% { opacity: .33; transform: translateX(0px) rotate(-15deg);}
}

/* Hero Section */
.headerHero {
  background: var(--primary-blue);
  color: var(--grey-0);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.headerHero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.headerHero .title {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.headerHero .title h2 {
  font-size: var(--h1Size);
  font-weight: 600;
  color: var(--grey-0);
  margin-bottom: 2rem;
}

/* Buttons */
a.buttonV1 {
  display: inline-block;
  background: var(--primary-green);
  color: var(--grey-0);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

a.buttonV1 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.3s ease;
}

a.buttonV1 span::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-blue);
  transition: left 0.3s ease;
  z-index: -1;
}

a.buttonV1:hover span::after {
  left: 0;
}

a.buttonV1:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(28, 189, 187, 0.3);
}

/* Title CTA Section */
.titleCta {
  padding: 80px 0;
  text-align: center;
  background: var(--grey-25);
}

.titleCta .h1 {
  font-size: var(--h1Size);
  font-weight: 600;
  color: var(--grey-100);
  margin-bottom: 1rem;
}

.titleCta .h2 {
  font-size: var(--h2Size);
  font-weight: 300;
  color: var(--grey-50);
  margin-bottom: 2rem;
}

.titleCta .arrowAnimatedWrap {
  display: inline-block;
  margin-top: 2rem;
}

.titleCta .arrowAnimated {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.titleCta .arrowAnimated:hover {
  background: var(--secondary-blue);
  transform: scale(1.1);
}

.titleCta .arrowAnimated::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid var(--grey-0);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translate(-50%, -50%);
}

/* Numbers Section */
.numbersWrapper {
  padding: 80px 0;
  background: var(--grey-0);
}

.numbersWrapper .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.numbersWrapper .numbersIntro {
  text-align: center;
  max-width: 800px;
}

.numbersWrapper .numbersIntro p {
  font-size: var(--h5Size);
  color: var(--grey-100);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.numbersWrapper .numbersGrid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.numbersWrapper .column {
  text-align: center;
  padding: 2rem;
  flex: 1;
}

.numbersWrapper .number {
  font-size: 4rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
  position: relative;
}

.numbersWrapper .number:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-green);
}

.numbersWrapper .text {
  font-size: var(--h5Size);
  color: var(--grey-100);
  font-weight: 600;
}

/* Content Section */
.contentSection {
  padding: 80px 0;
  background: var(--grey-25);
}

.contentSection .contentGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contentSection .contentText h1 {
  font-size: var(--h3Size);
  font-weight: 600;
  color: var(--grey-100);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.contentSection .contentText p {
  font-size: 18px;
  color: var(--grey-50);
  line-height: 1.6;
  margin: 0;
}

.contentSection .contentImage {
  text-align: center;
}

.contentSection .contentImage img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Text Image Column */
.textImageColumn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 80px 0;
}

.textImageColumn.inverse {
  direction: rtl;
}

.textImageColumn.inverse > * {
  direction: ltr;
}

.textImageColumn .column.content {
  padding: 2rem;
}

.textImageColumn .column.image {
  text-align: center;
}

.textImageColumn h4 {
  font-size: var(--h4Size);
  font-weight: 600;
  color: var(--grey-100);
  margin-bottom: 2rem;
}

.textImageColumn .column.content {
  padding-right: 2rem;
}

.textImageColumn.inverse .column.content {
  padding-right: 0;
  padding-left: 2rem;
}

.textImageColumn.noTitle .column.content {
  padding-top: 0;
}

.textImageColumn .buttonV1 {
  margin-top: 2rem;
}

.textImageColumn .arrowAnimated {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.textImageColumn .arrowAnimated:hover {
  background: var(--secondary-blue);
  transform: scale(1.1);
}

.textImageColumn .arrowAnimated::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid var(--grey-0);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translate(-50%, -50%);
}

/* Founder Section */
.founderSection {
  padding: 80px 0;
  background: var(--grey-0);
}

.founderSection .founderHeader {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  min-height: 200px;
}

.founderSection .founderHeader h2 {
  font-size: var(--h2Size);
  font-weight: 600;
  color: var(--grey-100);
  margin-bottom: 0.5rem;
}

.founderSection .founderHeader h3 {
  font-size: var(--h4Size);
  font-weight: 600;
  color: var(--primary-gren);
  margin-bottom: 0;
  line-height: 1.3;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: 100%;
}

.founderSection .founderGrid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.founderSection .founderImage {
  text-align: center;
}

.founderSection .founderImage img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founderSection .founderContent {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.founderSection .founderContent p {
  font-size: 18px;
  color: var(--grey-50);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Footer */
.ppFooter .content {
  background: var(--primary-blue);
  color: var(--grey-0);
  padding: 60px 0;
  text-align: center;
}

.ppFooter .content .toTop {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.ppFooter .content .toTop:hover {
  background: var(--secondary-blue);
  transform: scale(1.1);
}

.ppFooter .content .toTop::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid var(--grey-0);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translate(-50%, -50%) rotate(90deg);
}

.ppFooter .content .link {
  margin-bottom: 2rem;
}

.ppFooter .content .link a {
  color: var(--grey-0);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--h5Size);
}

.ppFooter .content .link a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--grey-0);
  margin-left: 0.5rem;
}

.ppFooter .content .text {
  font-size: var(--h6Size);
  color: var(--grey-50);
}

.ppFooter .content .text div {
  margin-bottom: 0.5rem;
}

.ppFooter .content .text a {
  color: var(--primary-green);
  text-decoration: none;
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--grey-100);
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Design */
@media screen and (max-width: 880px) {
  .site-branding {
    flex: 1;
  }
  
  .languageSwitch {
    margin-left: 1rem;
  }

    .register {
    margin-left: 1rem;
  }
  
  #site-navigation {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--grey-0);
    transition: left 0.3s ease;
    flex-direction: column;
    padding: 2rem;
  }
  
  #site-navigation.toggled {
    left: 0;
  }
  
  #site-navigation ul {
    flex-direction: column;
    width: 100%;
  }
  
  #site-navigation ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  #site-navigation ul li a {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .toggled .menu-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  
  .toggled .menu-toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .toggled .menu-toggle .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Typography adjustments for mobile */
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2rem;
  }
  
  .textImageColumn {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .textImageColumn .column.content {
    padding: 1rem;
  }
  
  .numbersWrapper .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .numbersWrapper .numbersGrid {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Content Section mobile adjustments */
  .contentSection .contentGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contentSection .contentText h1 {
    font-size: var(--h4Size);
  }
  
  /* Founder Section mobile adjustments */
  .founderSection .founderGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .founderSection .founderImage img {
    height: 300px;
  }
  
  .founderSection .founderHeader h2 {
    font-size: var(--h3Size);
  }
  
  .founderSection .founderHeader h3 {
    font-size: var(--h5Size);
  }
  
  /* History Section mobile adjustments */
  .historySection h1 {
    font-size: var(--h2Size);
  }
  
  .historySlide {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }
  
  .historyImage img {
    height: 300px;
  }
  
  .historyCarousel .arrow .prev {
    left: -80px;
  }
  
  .historyCarousel .arrow .next {
    right: -80px;
  }
  
  /* Structure Section mobile adjustments */
  .structureSection h1 {
    font-size: var(--h2Size);
  }
  
  .structureSection h3 {
    font-size: var(--h5Size);
  }
  
  .structureItem {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .structureImage img {
    height: 250px;
  }
  
  /* FAQ Section mobile adjustments */
  .faqSection h1 {
    font-size: var(--h2Size);
  }
  
  .faqSection p {
    font-size: var(--h6Size);
  }
  
  .faqHeader {
    padding: 1.5rem;
  }
  
  .faqHeader h3 {
    font-size: var(--h6Size);
  }
  
  .faqContent {
    padding: 0 1.5rem;
  }
  
  .faqItem.active .faqContent {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  /* Carousel mobile adjustments */
  .pageHeaderSwiper {
    height: 60vh;
    min-height: 600px;
  }
  
  .pageHeaderSwiper .content h2 {
    font-size: 2.5rem;
    width: 100%;
  }
  
  .pageHeaderSwiper .arrow {
    right: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .headerHero {
    padding: 100px 0 60px;
  }
  
  .titleCta {
    padding: 60px 0;
  }
  
  .numbersWrapper {
    padding: 60px 0;
  }
  
  .textImageColumn {
    padding: 60px 0;
  }
  
  /* Carousel mobile adjustments */
  .pageHeaderSwiper {
    height: 50vh;
    min-height: 500px;
  }
  
  .pageHeaderSwiper .content h2 {
    font-size: 2rem;
  }
  
  .pageHeaderSwiper .content h3 {
    font-size: 1rem;
  }
  
  .pageHeaderSwiper .toBottom {
    width: 50px;
    height: 50px;
    bottom: 1em;
    left: 1em;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } 

/* History Section */
.historySection {
  padding: 80px 0;
  background: var(--grey-25);
}

.historySection h1 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: var(--h1Size);
  font-weight: 600;
  color: var(--grey-100);
}

.historyCarousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.historyCarousel .swiper {
  padding: 0 60px;
}

.historySlide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem;
  background: var(--grey-0);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 1rem;
}

.historyImage {
  text-align: center;
}

.historyImage img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.historyContent h3 {
  font-size: var(--h3Size);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.historyContent h4 {
  font-size: var(--h4Size);
  font-weight: 600;
  color: var(--grey-100);
  margin-bottom: 1rem;
}

.historyContent p {
  font-size: 18px;
  color: var(--grey-50);
  line-height: 1.6;
  margin: 0;
}

.historyCarousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.historyCarousel .swiper {
  padding: 0 60px;
}

.historyCarousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
  width: 100%;
  justify-content: space-between;
  pointer-events: none;
}

.historyCarousel .arrow .prev,
.historyCarousel .arrow .next {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  pointer-events: all;
}

.historyCarousel .arrow .prev:hover,
.historyCarousel .arrow .next:hover {
  background: var(--secondary-blue);
  transform: scale(1.1);
}

.historyCarousel .arrow .prev::after,
.historyCarousel .arrow .next::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid var(--grey-0);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.historyCarousel .arrow .prev::after {
  transform: rotate(180deg);
}

.historyCarousel .arrow .prev {
  left: -80px;
}

.historyCarousel .arrow .next {
  right: -80px;
} 

/* Structure Section */
.structureSection {
  padding: 80px 0;
  background: var(--grey-0);
}

.structureSection h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: var(--h1Size);
  font-weight: 600;
  color: var(--grey-100);
}

.structureSection h3 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: var(--h4Size);
  font-weight: 300;
  color: var(--grey-50);
  line-height: 1.6;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.structureItem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--grey-25);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.structureItem.reverse {
  direction: rtl;
}

.structureItem.reverse > * {
  direction: ltr;
}

.structureContent h2 {
  font-size: var(--h4Size);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.structureContent p {
  font-size: 16px;
  color: var(--grey-50);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.structureContent p:last-child {
  margin-bottom: 0;
}

.structureImage {
  text-align: center;
}

.structureImage img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
} 

/* FAQ Section */
.faqSection {
  padding: 80px 0;
  background: var(--grey-25);
}

.faqSection h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: var(--h1Size);
  font-weight: 600;
  color: var(--grey-100);
}

.faqSection p {
  text-align: center;
  margin-bottom: 4rem;
  font-size: var(--h5Size);
  color: var(--grey-50);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faqAccordion {
  max-width: 800px;
  margin: 0 auto;
}

.faqItem {
  background: var(--grey-0);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faqItem.active {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faqHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faqHeader:hover {
  background: var(--secondary-light-blue);
}

.faqHeader h3 {
  font-size: var(--h5Size);
  font-weight: 600;
  color: var(--grey-100);
  margin: 0;
  flex: 1;
}

.faqArrow {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faqArrow::before,
.faqArrow::after {
  content: '';
  position: absolute;
  background: var(--primary-green);
  transition: all 0.3s ease;
}

.faqArrow::before {
  width: 2px;
  height: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.faqArrow::after {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faqItem.active .faqArrow::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faqContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
}

.faqItem.active .faqContent {
  max-height: 200px;
  padding: 0 2rem 2rem 2rem;
}

.faqContent p {
  font-size: 16px;
  color: var(--grey-50);
  line-height: 1.6;
  margin: 0;
  text-align: left;
} 

/* Popup Modal */
.popupBackdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ccccccee;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popupWrapper {
  border: 1px solid var(--primary-green);
  max-width: 80%;
  max-height: 70%;
  width: 600px;
  height: 400px;
  background-color: #FFF;
  border-radius: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--primary-blue);
  overflow: auto;
}

.popupWrapper button {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 4px;
  right: 4px;
  background: none;
  color: var(--primary-blue);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.popupContent {
  padding: 12px;
  max-height: 100%;
}

.popupContent a {
  color: var(--primary-green);
  font-weight: bold;
}

.popupContent img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.popupContent p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.popupContent p:last-child {
  margin-bottom: 0;
}

/* Responsive popup */
@media screen and (max-width: 880px) {
  .popupWrapper {
    width: 90%;
    height: 80%;
    max-width: 90%;
    max-height: 80%;
  }
}

@media screen and (max-width: 480px) {
  .popupWrapper {
    width: 95%;
    height: 85%;
    max-width: 95%;
    max-height: 85%;
  }
  
  .popupContent {
    padding: 8px;
  }
} 

/* Contact page sections styling */
.contactEmails {
  padding: 4rem 0;
  background-color: #ffffff;
}

.contactEmails .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contactEmails p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contactEmails a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.contactEmails a:hover {
  text-decoration: underline;
}

.contactForm {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.contactForm .container {
  max-width: 800px;
  margin: 0 auto;
}

.contactFormTitle {
  text-align: center;
  margin-bottom: 2rem;
}

.contactFormTitle h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contactFormTitle p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
} 

/* Contact page hero image fixes */
.contact-page .pageHeaderSwiper {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.contact-page .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-page .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-page .pageHeaderSwiper .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.contact-page .pageHeaderSwiper .content .text h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Position down arrow on the left side */
.contact-page .toBottom.left {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: auto;
  transform: none;
}

.contact-page .toBottom.left::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #fff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, -50%);
  }
  40% {
    transform: translate(-50%, -60%);
  }
  60% {
    transform: translate(-50%, -55%);
  }
}

/* Hide navigation arrows for contact page */
.contact-page .pageHeaderSwiper .arrow {
  display: none;
} 

/* Professional text sizing for contact page */
.contact-page .titleCta .h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact-page .titleCta .h2 {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-page .contactEmails p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-page .contactEmails a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.contact-page .contactEmails a:hover {
  text-decoration: underline;
}

.contact-page .contactFormTitle h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-page .contactFormTitle p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.contact-page .form-group label {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-page .checkbox-label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-page .submit-btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
}

/* Responsive text sizing */
@media (max-width: 768px) {
  .contact-page .pageHeaderSwiper .content .text h2 {
    font-size: 2rem;
  }
  
  .contact-page .titleCta .h1 {
    font-size: 1.8rem;
  }
  
  .contact-page .titleCta .h2 {
    font-size: 1rem;
  }
  
  .contact-page .contactFormTitle h3 {
    font-size: 1.3rem;
  }
} 

/* Professional contact form styling */
.contact-page .contactForm {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-page .contactForm .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-page .contactFormTitle {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.contact-page .contactFormTitle h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}

.contact-page .contactFormTitle h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.contact-page .contactFormTitle p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-page .form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.contact-page .form-group label {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.contact-page .form-group .required {
  color: #e74c3c;
  font-weight: 700;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
  padding: 16px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333;
  font-family: inherit;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(26, 178, 239, 0.1);
  transform: translateY(-1px);
}

.contact-page .form-group input.error,
.contact-page .form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact-page .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-page .checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.contact-page .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
  color: #555;
}

.contact-page .checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-page .checkbox-label a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.contact-page .checkbox-label a:hover {
  text-decoration: underline;
}

.contact-page .form-submit {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.contact-page .submit-btn {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1a9fef 100%);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 178, 239, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-page .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-page .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 178, 239, 0.4);
}

.contact-page .submit-btn:hover::before {
  left: 100%;
}

.contact-page .submit-btn:active {
  transform: translateY(0);
}

/* Form validation styling */
.contact-page .form-group input:valid,
.contact-page .form-group textarea:valid {
  border-color: #28a745;
}

.contact-page .form-group input:invalid:not(:placeholder-shown),
.contact-page .form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

/* Responsive form design */
@media (max-width: 768px) {
  .contact-page .contactForm .container {
    padding: 0 1rem;
  }
  
  .contact-page .contact-form {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .contact-page .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-page .contactFormTitle h3 {
    font-size: 1.5rem;
  }
  
  .contact-page .contactFormTitle p {
    font-size: 1rem;
  }
  
  .contact-page .submit-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
} 