html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333333;
    line-height: 1.6;
}

.has-text-primary-dark {
    color: #002B61 !important;
}

.has-background-primary-dark {
    background-color: #002B61 !important;
}

.has-background-primary-light-overlay {
    background-color: rgba(0, 71, 171, 0.2) !important; /* Slightly transparent primary blue */
}

.has-text-info {
    color: #0047AB !important; /* Cobalt Blue */
}

.button.is-info {
    background-color: #0047AB;
    border-color: #0047AB;
    color: #FFFFFF;
}

.button.is-info:hover {
    background-color: #003785;
    border-color: #003785;
}

.has-text-success {
    color: #0A6847 !important; /* Deep Forest Green */
}

.has-text-gold {
    color: #FFD700 !important; /* Gold */
}

.has-text-white {
    color: #FFFFFF !important;
}

.has-text-white-ter {
    color: #E0E0E0 !important;
}

.has-text-grey-light {
    color: #CCCCCC !important;
}

.has-background-light-blue {
    background-color: #F0F8FF !important;
}

.is-primary-dark-bg {
    background-color: #002B61;
}

/* Navbar */
.navbar {
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-height: 4.25rem;
    padding: 0.5rem 0;
}

.navbar-brand .navbar-item {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand .navbar-item span {
    color: #002B61;
}

.navbar-item {
    color: #333333;
    font-weight: 600;
}

.navbar-item:hover {
    color: #0047AB;
    background-color: transparent;
}

.navbar-burger {
    color: #002B61;
}

.navbar-burger:hover {
    background-color: transparent;
}

.navbar-menu.is-active {
    background-color: #FFFFFF;
}

.navbar-end .button {
    border-radius: 290486px;
    text-decoration: none !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar-end .button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-image: url('media/uploads/financial-cityscape-bg_2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 43, 97, 0.75); /* Dark overlay for text readability */
    z-index: 0;
}

.hero .hero-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero .container {
    max-width: 1200px;
}

.hero-image {
    max-height: 500px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* General Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-delay-1 { transition-delay: 0.2s; }
.animate-delay-2 { transition-delay: 0.4s; }
.animate-delay-3 { transition-delay: 0.6s; }
.animate-delay-4 { transition-delay: 0.8s; }
.animate-delay-5 { transition-delay: 1.0s; }

.animated-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-feature-card {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-feature-card h3 {
    color: #002B61;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Facts Section */
#facts .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

#facts .is-size-1 {
    margin-bottom: 0.5rem;
}

/* Services Section */
.service-card-wrapper {
    display: flex;
    align-items: stretch; /* Ensure cards in a row have equal height */
}

.service-card {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Important for equal height */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-top: 1rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-card .image img {
    border-radius: 4px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Why Choose Us Section */
.why-choose-card {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.why-choose-card:hover {
    background-color: rgba(0, 71, 171, 0.4) !important;
    transform: translateY(-5px);
}

.why-choose-card h3 {
    color: #FFFFFF;
}

/* FAQ Section */
.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background-color: #002B61;
    color: #FFFFFF;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #003785;
}

.accordion-header .icon {
    transition: transform 0.3s ease;
}

.accordion-header.is-active .icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #FFFFFF;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.accordion-content.is-active {
    max-height: 500px; /* Arbitrary large value */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-slider-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    position: relative;
    border-radius: 8px;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    flex-shrink: 0;
}

.testimonial-slide .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-slide .card .media-left img {
    object-fit: cover;
}

.slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 71, 171, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-nav-button:hover {
    background-color: #0047AB;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer .footer-logo {
    padding-left: 0;
}



.footer .footer-logo span {
    color: #FFFFFF;
}

.footer a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #0047AB;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero .columns {
        flex-direction: column;
    }
    .hero-content-left, .hero-image-right {
        text-align: center;
    }
    .hero-image {
        margin-top: 2rem;
        max-height: 300px;
    }
    .navbar-menu {
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .navbar-item.has-dropdown.is-active .navbar-dropdown {
        background-color: #f5f5f5;
    }
    .footer .columns {
        text-align: center;
        display: block;
    }
    .footer .column {
        margin-bottom: 1rem;
    }
    .footer .column:last-child {
        margin-bottom: 0;
    }
    .footer .column a {
        display: block;
        margin-bottom: 0.5rem;
    }
    .testimonials-slider-container {
        padding: 0 10px;
    }
    .slider-nav-button {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .slider-prev {
        left: -5px;
    }
    .slider-next {
        right: -5px;
    }
}

@media screen and (min-width: 769px) {
    .navbar-end .navbar-item {
        margin-left: auto;
    }
    .navbar-burger {
        display: none;
    }
    .navbar-item.has-dropdown:hover .navbar-dropdown {
        display: block;
    }
}
/*
 * Base styles for the .complianceVaultNode container
 * Provides top and side padding to ensure content is not flush with edges.
 */
.complianceVaultNode {
    padding-top: 20px; /* Top padding for the container */
    padding-left: 20px; /* Left padding for the container */
    padding-right: 20px; /* Right padding for the container */
    /* Optional: You might want to add a max-width for better readability on very wide screens */
    /* max-width: 1000px; */
    /* margin: 0 auto; */ /* If max-width is used, this centers the container */
}

/*
 * Heading styles (h1-h5) within .complianceVaultNode
 * Designed to be moderate in size, not overly large, with appropriate spacing.
 */
.complianceVaultNode h1 {
    font-size: 1.8em; /* Font size for the main heading, moderately large */
    margin-top: 1.5em; /* Top margin for separation from preceding content */
    margin-bottom: 0.8em; /* Bottom margin for separation from subsequent content */
    line-height: 1.2; /* Line height for readability */
    font-weight: bold; /* Ensure it's bold */
}

.complianceVaultNode h2 {
    font-size: 1.5em; /* Font size for sub-headings */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.2;
    font-weight: bold;
}

.complianceVaultNode h3 {
    font-size: 1.25em; /* Font size for tertiary headings */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.3;
    font-weight: bold;
}

.complianceVaultNode h4 {
    font-size: 1.1em; /* Font size for quaternary headings */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.4;
    font-weight: bold;
}

.complianceVaultNode h5 {
    font-size: 1em; /* Font size for quinary headings, slightly larger than default browser h5 */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.5;
    font-weight: bold;
}

/*
 * Paragraph styles (p) within .complianceVaultNode
 * Standard paragraph styling for good readability.
 */
.complianceVaultNode p {
    font-size: 1em; /* Base font size for paragraphs */
    margin-bottom: 1em; /* Bottom margin for spacing between paragraphs */
    line-height: 1.6; /* Line height for improved readability */
}

/*
 * Unordered list styles (ul) within .complianceVaultNode
 * Provides standard list formatting with bullet points and proper spacing.
 */
.complianceVaultNode ul {
    margin-top: 1em; /* Top margin for list separation */
    margin-bottom: 1em; /* Bottom margin for list separation */
    padding-left: 25px; /* Left padding for bullet points indentation */
    list-style-type: disc; /* Default bullet style */
}

/*
 * List item styles (li) within .complianceVaultNode
 * Provides spacing between individual list items.
 */
.complianceVaultNode li {
    margin-bottom: 0.5em; /* Bottom margin for spacing between list items */
    line-height: 1.5; /* Line height for readability within list items */
}
.testimonials-section-09cx {
  background-color: #1a1f2b;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.title-09cx {
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.slider-wrapper-09cx {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider-track-09cx {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
  scroll-behavior: smooth;
}

.slide-09cx {
  flex: 0 0 350px;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
}

.testimonial-card-09cx {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.testimonial-card-09cx:hover {
  transform: translateY(-5px);
}

.testimonial-header-09cx {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar-09cx {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.name-09cx {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.role-09cx {
  font-size: 0.9rem;
  color: #d1d1d1;
}

.text-09cx {
  font-size: 0.95rem;
  color: #cfcfcf;
  margin: 10px 0;
}

.date-09cx {
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-top: auto;
}

.slider-btn-09cx {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slider-btn-09cx:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* ==== FAQ Section ==== */
.faq-section-09cx {
  background-color: #f5f6fa;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.faq-container-09cx {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title-09cx {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 50px;
}

.faq-list-09cx {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item-09cx {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question-09cx {
  width: 100%;
  background: #1a1f2b;
  color: #fff;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question-09cx:hover {
  background: #242a3a;
}

.faq-question-09cx i {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-item-09cx.active .faq-question-09cx i {
  transform: rotate(180deg);
}

.faq-answer-09cx {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #333;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item-09cx.active .faq-answer-09cx {
  max-height: 500px;
  padding: 20px 25px;
}

.faq-answer-09cx p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .faq-title-09cx {
    font-size: 1.8rem;
  }
  .faq-question-09cx {
    font-size: 1rem;
    padding: 18px;
  }
}
@media (max-width:575px) {
    .titiel-hertoe{
        font-size: 29px!important;
    }
}
@media (max-width:768px) {
    .hero-body{
        padding-top: 90px;
    }
}
@media screen and (min-width: 769px), print {
    .hero-body {
        padding: 100px 15px;
    }
} 
/* ===== HERO SECTION ===== */
.hero-section-09cx {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1f2b, #2b3550);
  color: #fff;
  min-height: 100vh;
  padding: 100px 20px;
  overflow: hidden;
}

.hero-container-09cx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 50px;
}

/* ---- Text Block ---- */
.hero-content-09cx {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: fadeInUp-09cx 1s ease forwards;
}

.hero-title-09cx {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.hero-title-09cx span {
  color: #5bc0ff;
}

.hero-subtitle-09cx {
  font-size: 1.1rem;
  color: #d6d9e0;
  line-height: 1.7;
  max-width: 600px;
}

.hero-button-09cx {
  background-color: #5bc0ff;
  color: #1a1f2b;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 35px;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
}

.hero-button-09cx:hover {
  background-color: #3ca7e8;
  transform: translateY(-3px);
}

/* ---- Image ---- */
.hero-image-09cx {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
  animation: fadeInRight-09cx 1.2s ease forwards;
}

.hero-image-09cx img {
  max-width: 100%;
  object-fit: cover;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: scale(1);
  transition: transform 0.4s ease;
}

.hero-image-09cx img:hover {
  transform: scale(1.03);
}

/* ---- Animations ---- */
@keyframes fadeInUp-09cx {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight-09cx {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero-container-09cx {
    flex-direction: column;
    text-align: center;
  }

  .hero-content-09cx {
    align-items: center;
  }

  .hero-title-09cx {
    font-size: 2.2rem;
  }

  .hero-subtitle-09cx {
    font-size: 1rem;
  }

  .hero-button-09cx {
    margin-top: 10px;
  }

  .hero-image-09cx img {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .hero-title-09cx {
    font-size: 1.8rem;
  }

  .hero-subtitle-09cx {
    font-size: 0.95rem;
  }

  .hero-button-09cx {
    font-size: 1rem;
    padding: 12px 28px;
  }
}
