        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {            
            background-color: rgba(0, 0, 0, 0.5);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
        }
        section {
  scroll-margin-top: 60px;
}
html {
  scroll-behavior: smooth;
}
        .header-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4%;
            z-index: 1000;
        }
        .logo {
            height: 40px;
            width: auto;
        }
        .header-nav {
            display: flex;
            align-items: center;
            gap: 70px;
        }
        .header-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 400;
            opacity: 1;
            transition: all 0.2s ease;
        }
        .header-nav a:hover {
            color: #5BD7D9;
            transform: scale(1.05); 
        }
        .header-nav .cta {
            padding: 8px 20px;
            border-radius: 25px;              
            background-color: #5BD7D9;
            color: #ffffff;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: all 0.25s ease;
        }
        .header-nav .cta:hover {
            background-color: #083087; 
            color: #ffffff;
            transform: scale(1.05); 
            box-shadow: 0 4px 12px rgba(10, 61, 180, 0.3);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 25px;
            height: 20px;
            cursor: pointer;
        }
        .hamburger span {
            display: block;
            height: 3px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}       
.mobile-nav {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: #083087;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 60px 5% 0 5%;
  transform: translateY(-200%);
  pointer-events: none;
  transition: transform 0.5s ease;
  z-index: 999;
}
.mobile-nav.active {
  transform: translateY(0);
  pointer-events: auto;
  
}
        .mobile-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 100;
        }
        .mobile-nav .cta {
            background: none;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
            font-weight: 100;
        }
        .mobile-nav a:hover {
            color: #5BD7D9;
            transform: scale(1.05); 
        }
        @media (max-width: 900px) {
            .header-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-bar {
                height: 60px;
            }
            .logo {
                height: 40px;
            }
        }
        .header-left {
            display: flex;
            align-items: center;
        }
.card {
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  max-height: min(90vh,760px);
  position: relative;
}
.card-image {
  position: relative;
  height: 100vw;
  width: 100%;
  overflow: hidden;
}
.card-image img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  max-height: min(90vh,760px);
}
.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.0) 70%
  );
}
@supports (height: 100dvh) {
  .card-image {
    min-height: 100dvh;
  }
}
.overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14% 15% 15% 15%;            
  gap: 0rem;
  z-index: 2;
  height: min(90vh,760px);
}
.hero-left {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-right {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;  
}
.hero-right img {
  height: 100%;  
  width: 80%;
  max-height: 400px; 
  object-fit: cover;
  opacity:1;
}
.hero-line {
font-size: clamp(2.2rem, 4.5vw, 4.5rem);
font-weight: 400;
text-shadow: 0 4px 16px rgba(0,0,0,0.75);
color: #fff;
line-height: 1.2;
max-width: 11em;
}
.sub-line {
  font-size: clamp(1.0rem, 2.5vw, 1.8rem);
  font-weight: 100;
  margin-top: 1em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.75);
  color: #fff;
  line-height: 1.5;
  max-width: 25em;
}
.advantage-section {
  margin: 0 auto;
  position: relative;
  padding:60px 7.5% 60px 40%;
}
.card-bg-adv {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.card-bg-adv img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.advantage-flex {
  display: flex;
  gap: 0rem;            
  align-items: center; 
  flex-wrap: wrap;       
}
.advantage-items {
  flex: 1;  
  display: flex;
  flex-direction: column;
  z-index: 3;
  position: relative;
  gap: 0.5rem;
}
.advantage-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight:100;
  color: #fff;
  text-align: left;
  margin: 0 0 60px 0;
  max-width: 12em;
  padding-left: 1rem;
}
.advantage-item {
  margin-bottom: 1rem;
}
.primary-pill {
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(8, 48, 135, 0.1);
  color: #fff;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}
.pill-text {
  flex: 1;
  font-size: clamp(0.8rem, 2.0vw, 1.45rem);
  line-height: 1.6;
  font-weight: 400;
  font-family: inherit;
  text-align: left;
}
.pill-caret {
  font-size: clamp(
  calc(1.2 * 0.8rem),
  calc(1.2 * 2.0vw),
  calc(1.2 * 1.45rem)
);
  margin-left: 0.2rem;
  color: #5BD7D9;
  opacity: 1;
  transition: transform 0.3s ease;
}
.primary-pill[aria-expanded="true"] .pill-caret {
  transform: rotate(180deg);
}
.expanded-row-wrap {
  display: none;
  margin-top: 0.0rem;
}
.expanded-row {
  flex: 1;
  font-size: clamp(0.8rem, 2.0vw, 1.45rem);
  padding: 0 0 0 1rem;
  font-weight: 100;
  line-height: 1.6;
  color: #7FF0F3;
}
@media (max-width: 1024px) {
.advantage-section {
padding:60px 7.5% 60px 35%;
}
.card-bg-adv img {
width: 35%;
}   
}
@media (max-width: 768px) {
.advantage-section {
padding:60px 7.5% 60px 30%;
}
.card-bg-adv img {
width: 30%;
} 
}
@media (max-width: 600px) {
.advantage-section {
padding:60px 7.5% 60px 20%;
}
.card-bg-adv img {
width: 20%;
} 
}
.technology-section {
  position: relative;
  margin: 0 auto;
  padding:60px 20% 60px 15%;
}
.card-bg-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.card-bg-tech img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 01;
}
.card-bg-tech::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.0) 70%
  );
}
.technology-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.tech-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight:100;
  color: #fff;
  text-align: left;
  margin: 0 0 60px 0;
  max-width: 13em;
  padding-left: 0rem;
}
.tech-left {
  flex: 0 0 100%;
  color: #fff;
}
.tech-description {
  font-size: clamp(0.8rem, 2.0vw, 1.45rem);
  line-height: 1.6;
  font-weight: 100;
}
.fade-text {
  max-height: 5em;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  transition: max-height 0.5s ease, mask-image 0.5s ease;
}
.fade-text.expanded {
  max-height: 1000px;
  mask-image: none;
  -webkit-mask-image: none;
}
.read-more-btn {
  background: none;
  border: none;
  color: #7FF0F3;
  font-size: clamp(0.8rem, 2.0vw, 1.45rem);
  font-family: inherit;
  font-weight: 400;
  cursor: pointer;
  margin-top: 1rem;
}
.read-more-btn-fr {
  background: none;
  border: none;
  color: #7FF0F3;
  font-size: clamp(0.8rem, 2.0vw, 1.45rem);
  font-family: inherit;
  font-weight: 400;
  cursor: pointer;
  margin-top: 1rem;
}
@media (max-width: 1200px) {
.technology-section {
  padding:60px 15% 60px 15%;
}  
}
.dim-image {
  filter: brightness(0.9);
}
.about-header {
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(8, 48, 135, 0.1);
  color: #fff;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}
.about-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight:100;
  color: #fff;
  text-align: left;
  margin: 0 0 60px 0;
  max-width: 17em;
  padding-left: 1rem;
}
.about-icon {
  font-size: clamp(
  calc(1.2 * 0.8rem),
  calc(1.2 * 2.0vw),
  calc(1.2 * 1.45rem)
);
  flex-shrink: 0;
  color:  #fff;
  font-weight: 100;
  width: 1.0rem;
  height: 1.0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@keyframes fadeIn {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 1000px; }
}
.about-caret {
  margin-left: 1rem;
  font-size: clamp(
  calc(1.2 * 0.8rem),
  calc(1.2 * 2.0vw),
  calc(1.2 * 1.45rem)
);
  color: #5BD7D9;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.about-header[aria-expanded="true"] .about-phrase .about-caret {
  transform: rotate(180deg);
}
.no-underline {
  text-decoration: none;
  color: #7FF0F3;
}
.no-underline:hover {
  text-decoration: underline;
}
.site-footer {
  background-color: #083087;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  padding: 1rem 10%;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 auto;
  text-align: left;
}
.footer-center {
  text-align: center;
}
.footer-right {
  text-align: right;
}
.footer-right a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 0.25rem;
  transition: color 0.2s ease;
}
.footer-right a:hover {
  color: #5bd7d9;
}
.footer-right .separator {
  color: #ffffff;
  margin: 0 0.25rem;
}
.privacy-container {
  margin: 0 auto;
  padding: 120px 15% 60px 15%;
  color: #fff;
  line-height: 1.6;
}
.privacy-title {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 400;
  text-align: left;
  margin-bottom: 60px;
}
.privacy-section {
  margin-bottom: 2.0rem;
}
.privacy-heading {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: #083087;
}
.privacy-section p {
  font-size: clamp(0.8rem, 2.0vw, 1.45rem);
  font-weight: 100;
  margin-bottom: 1rem;
  text-align: left;
}
.privacy-section a {
  color: #7FF0F3;
  text-decoration: none;
}
.privacy-section a:hover {
  text-decoration: underline;
}
strong{
	font-weight:700;
}