@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=Geist+Mono:wght@400;500;600&family=Geist:wght@300;400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

/* Use the font in your styles */
body {
  font-family: "Geist", sans-serif;
  margin: 0;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bricolage Grotesque", sans-serif;
}

/* Breadcrumbs */

.breadcrumbs,
h1 {
  width: 100%;
  text-align: left;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs-item {
  font-family: "Geist Mono", monospace;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: #9fb1a5;
}

.breadcrumbs-item a {
  font-family: "Geist Mono", monospace;
  font-weight: 600;
  color: #9fb1a5;
  text-decoration: none;
}

.breadcrumbs-item-last {
  color: #9fb1a5;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: 0 32px;
  text-align: center;
  position: fixed;
  z-index: 999;
  background-color: #113120;
}

.header-container {
  max-width: 1920px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75em 0;
  border-radius: 0;
  background-color: transparent;
  z-index: 200000;
  width: 100%;
  position: relative;
}

.bg-header-container {
  z-index: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
  position: absolute;
  inset: 0%;
  box-shadow: none;
}

.header-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
  z-index: 5;
}

.header-buttons {
  display: flex;
  gap: 12px;
  z-index: 5;
}

.header-buttons .btn {
  border-radius: 12px;
  padding: 10px 20px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.header-buttons .btn-outline {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
}

.header-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.header-buttons .btn-standard {
  border-radius: 12px;
}

.header-wrapper .text-dark {
  color: #fff;
}

/* Customized Scrollbar */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.mobile-header-buttons {
  display: none;
}

.menu-toggle {
  display: none;
}

.logo img {
  height: 24px;
  /* Adjust as needed */
}

.menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  position: relative;
  align-items: center;
}

.menu > ul > li > a,
.menu > ul > li > .submenu-toggle {
  padding: 8px;
  border-radius: 8px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.menu a {
  text-decoration: none;
  color: #fff;
  position: relative;
}

.submenu-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2px;
}

.submenu-dropdown {
  position: relative;
}

.submenu-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1000;
  list-style: none;
  padding: 12px 10px;
  margin: 0;
  text-align: left;
}

.submenu-menu li > a {
  padding: 16px;
  min-width: 300px;
}

.submenu-menu-item-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenu-menu-item-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: left;
}

.submenu-menu-item-description {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}

.submenu-menu li:hover {
  background-color: #f1f1f1;
}

.submenu-menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.submenu-dropdown:hover .submenu-menu {
  display: block;
}

/* Who We Serve Dropdown */
.submenu-menu-who-we-serve {
  border-radius: 12px;
  border: 1px solid #e9eaeb;
  padding: 24px;
  box-shadow:
    0px 12px 16px -4px rgba(10, 13, 18, 0.08),
    0px 4px 6px -2px rgba(10, 13, 18, 0.03),
    0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  min-width: 360px;
}

.submenu-menu-who-we-serve li {
  border-radius: 8px;
  transition: background-color 0.15s ease;
}

.submenu-menu-who-we-serve li:hover {
  background-color: #fafafa;
}

.submenu-menu-who-we-serve li > a {
  padding: 12px;
  min-width: unset;
}

.submenu-menu-who-we-serve .submenu-menu-item-container {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.submenu-menu-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.submenu-menu-who-we-serve .submenu-menu-item-title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #181d27;
}

/* Solutions Mega Dropdown */
.submenu-menu-solutions {
  display: none;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0px 12px 16px -4px rgba(10, 13, 18, 0.08),
    0px 4px 6px -2px rgba(10, 13, 18, 0.03),
    0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  overflow: hidden;
  min-width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.submenu-dropdown:hover .submenu-menu.submenu-menu-solutions {
  display: flex;
}

.submenu-solutions-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 400px;
  padding: 24px;
}

.submenu-solutions-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 300px;
  padding: 24px;
  background-color: #f4f6f4;
}

.submenu-section-heading {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #335645;
}

.submenu-solutions-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenu-menu-solutions .submenu-solution-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

.submenu-solution-item:hover {
  background-color: #fafafa;
}

.submenu-solution-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.submenu-solution-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submenu-solution-title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #181d27;
}

.submenu-solution-desc {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}

.submenu-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.submenu-menu-solutions .submenu-feature-link {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
  text-decoration: none;
  padding: 4px 8px;
}

.submenu-menu-solutions .submenu-feature-link:hover {
  color: #181d27;
}
/* End Solutions Mega Dropdown */

/* Support Dropdown */
.submenu-menu-support {
  display: none;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e9eaeb;
  box-shadow:
    0px 12px 16px -4px rgba(10, 13, 18, 0.08),
    0px 4px 6px -2px rgba(10, 13, 18, 0.03),
    0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  min-width: 320px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 8px;
}

.submenu-dropdown:hover .submenu-menu.submenu-menu-support {
  display: flex;
}

.submenu-menu-support li {
  list-style: none;
}

.submenu-menu-support li:hover {
  background-color: #fafafa;
  border-radius: 8px;
}

.submenu-support-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}

.submenu-support-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.submenu-support-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submenu-support-title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #181d27;
}

.submenu-support-desc {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}

.submenu-menu-support li > a {
  padding: 0;
  min-width: auto;
  display: flex;
}
/* End Support Dropdown */

/* Resources Mega Dropdown */
.submenu-menu-resources {
  display: none;
  padding: 0;
  border-radius: 16px;
  border: 1px solid #d5d7da;
  box-shadow:
    0px 12px 16px -4px rgba(10, 13, 18, 0.08),
    0px 4px 6px -2px rgba(10, 13, 18, 0.03),
    0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  overflow: hidden;
  min-width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.submenu-dropdown:hover .submenu-menu.submenu-menu-resources {
  display: flex;
}

.submenu-resources-columns {
  display: flex;
  flex: 1;
  gap: 48px;
  padding: 24px;
}

.submenu-resources-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: none;
  white-space: nowrap;
}

.submenu-resources-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenu-menu-resources .submenu-resource-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

.submenu-resource-item:hover {
  background-color: #fafafa;
}

.submenu-resources-blog {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 448px;
  padding: 24px;
  background-color: #f4f6f4;
  flex-shrink: 0;
}

.submenu-blog-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submenu-menu-resources .submenu-blog-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

.submenu-blog-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.submenu-blog-thumb {
  width: 144px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.submenu-blog-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.submenu-blog-title {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #181d27;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.submenu-blog-desc {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.submenu-resource-icon-rotated {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  transform: rotate(90deg);
}
/* End Resources Mega Dropdown */

.btn {
  text-decoration: none;
  border-radius: 100px;
  font-family: "Geist", sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  color: #141414;
}

.btn-standard {
  background-color: #079455;
  color: white;
  border: none;
  cursor: pointer;
}

.btn-standard:hover {
  background-color: #067a47;
}

.btn-standard:active {
  background-color: #055c36;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #e2e2de;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #d1d1cd;
}

.btn-outline:active {
  border-color: #a3a3a0;
}

.forward-button {
  border-radius: 12px;
  background: #079455;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 31px;
  cursor: pointer;
}

.mobile-forward-button {
  display: none;
}

.forward-button img {
  width: 20px;
  height: 20px;
}

.main {
  padding: 20px;
  padding-top: 90px;
  width: 100%;
}

/* Font Settings */
.font-poppins {
  font-family: "Geist", sans-serif;
}

.font-SFPro {
  font-family: "Geist", sans-serif;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

/* Font-size settings */
.text-small {
  font-size: 12px;
  line-height: 1.25;
}

.text-medium {
  font-size: 14px;
  line-height: 1.5;
}

.text-large {
  font-size: 16px;
  line-height: 1.75;
}

/* Color settings */
.text-dark {
  color: #141414;
}

.text-light {
  color: #757573;
}

.text-white {
  color: #fff;
}

/* Dropdown */

.dropdown-container {
  display: inline-block;
  width: 100%;
}

.dropdown-button {
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-between;
  background-color: white;
  width: 100%;
  /* Adjust width as needed */
}

.dropdown-button-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.dropdown-button-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #a3a3a0;
}

.dropdown-button-description img {
  width: 14px;
  height: 14px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  border-radius: 12px;
  padding: 8px;

  /* Shadow/XL */
  box-shadow:
    0px 20px 24px -4px rgba(16, 24, 40, 0.08),
    0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  background: rgb(255, 255, 255);
  z-index: 1000;
  border-radius: 12px;

  max-height: 300px;
  overflow-y: auto;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  color: black;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px 12px 16px;
  border-radius: 8px;
}

.dropdown-item svg {
  width: 16px;
  height: 16px;
}

.dropdown-item:hover svg path {
  fill: #008042;
  opacity: 0.5;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
}

.dropdown-text {
  flex-grow: 1;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #141414;
}

.dropdown-state {
  color: #757573;
  font-size: 12px;
}

.dropdown-input {
  cursor: default;
  border: none;
  outline: none;
  width: 100%;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: -2%;
  text-align: left;
  color: #141414;
  background-color: transparent;
}

.search-panel {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5d7da;
  align-items: center;
  width: 100%;
}

/* End Dropdown */

/* Costs Panel */
.costs-panel {
  align-items: left;
  display: flex;
  justify-content: center;
  padding: 64px 24px 48px 24px;
  background-color: #113120;
  border-radius: 20px;
}

.costs-panel-container {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 48px;
  background-color: #113120;
  border-radius: 28px;
}

.costs-panel-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.costs-panel-header h1 {
  margin: 0;
}

.costs-panel-content {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 896px;
}

/* End Costs panel */

/* Banner */

.banner-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-height: 100%;
  gap: 24px;
  background-image: url("images/banner.png");
  background-size: cover;
  background-position-x: center;
  background-position-y: 20%;
  background-repeat: no-repeat;
  padding: 32px;
  border-radius: 12px;
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}

.banner-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 38, 20, 0.56);
  border-radius: 12px;
  z-index: 1;
}

.banner-container > * {
  position: relative;
  z-index: 2; /* Ensure the content is above the overlay */
}

.banner-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}

.banner-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 42px;
  letter-spacing: -2%;
  max-width: 450px;
}

.banner-text .logo-only {
  display: none;
}

/* End Banner */

/* Footer */

footer {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  background-color: #113120;
}

.footer-wrapper {
  width: 100%;
  max-width: 1920px;
  padding: 64px 32px 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  background-color: #113120;
}

.footer-top {
  display: flex;
  width: 1440px;
  max-width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  gap: 48px 64px;
  flex-wrap: wrap;
}

.footer-menu {
  display: flex;
  flex: 1;
  min-width: 640px;
}

.footer-links {
  display: flex;
  gap: 64px;
  text-align: left;
  width: 100%;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 96px;
}

.footer-column-heading {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #849a8d;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column li {
  margin: 0;
}

.footer-column a {
  text-decoration: none;
  color: #9fb1a5;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.footer-column a:hover {
  color: #079455;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 64px;
  flex-shrink: 0;
}

.footer-bottom-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1440px;
  width: 100%;
  border-top: 1px solid #335645;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
}

.footer-bottom-logo .logo-img {
  height: 24px;
  width: auto;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-right p {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #849a8d;
  margin: 0;
}

.footer-bottom-right a {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #849a8d;
  text-decoration: none;
}

.footer-bottom-right a:hover {
  color: #079455;
}

.footer-badge {
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 8px;
}

.footer-app-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-app-heading {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.footer-app-badges .app-badge {
  height: 40px;
  width: 136px;
}

.footer-roadmap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-roadmap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.footer-roadmap-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

footer ul li {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #9fb1a5;
}

/* End Footer */

/* Mobile */
@media (max-width: 1051px) {
  .main {
    padding: 0 10px;
    margin: 0 auto;
    padding-top: 90px;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
  }

  .header-nav-wrapper {
    justify-content: space-between;
    width: 100%;
  }

  .header-buttons {
    display: none;
  }

  .mobile-header-buttons {
    display: flex;
  }

  .forward-button {
    display: none;
  }

  .mobile-forward-button {
    display: block;
    width: 100%;
    background-color: #079455;
    border: 0;
    color: white;
  }

  .cost-panel-header-text {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -2%;
    text-align: left;
  }

  .menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transform: none;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    background: #efefea;
    border-radius: 12px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle img {
    width: 16px;
    height: 16px;
  }

  .submenu-menu {
    display: none;
    flex-direction: column;
  }

  .submenu-dropdown.active .submenu-menu {
    display: flex;
  }

  .mobile-header-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .costs-panel {
    padding: 120px 24px 48px 24px;
    gap: 24px;
  }

  .costs-panel-header {
    min-width: auto;
    padding: 0 16px;
  }

  .costs-panel-content {
    flex-direction: column;
    gap: 16px;
    min-width: 0;
  }

  footer {
    padding: 48px 16px 32px 16px;
    gap: 48px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-menu {
    min-width: 0;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-buttons {
    width: 100%;
  }

  .extra-costs-items-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom-right {
    align-items: center;
  }
}

/* Mobile Navigation Menu Styles */
.mobile-nav-menu {
  /* display: none; */
  /* Hidden by default */
  position: fixed;
  top: -100%;
  left: 0;
  width: calc(100vw - 20px);
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Semi-transparent background */
  z-index: 1000;
  /* Ensure it covers other content */
  overflow-y: auto;
  /* Allow scrolling if needed */
  background-color: white;
  transition: top 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-nav-menu-logo {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-menu-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 32px;
  height: 100%;
}

.mobile-nav-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-menu-footer button {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0%;
}

.mobile-nav-menu.show {
  top: 0;
}

.mobile-nav-menu ul {
  list-style: none;
  padding: 0;
  text-align: left;
  text-decoration: none;
  color: white;
}

.mobile-nav-menu li {
  padding: 5px 15px;
}

.mobile-nav-menu li a {
  text-decoration: none;
  padding: 10px 0;
  color: #444;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-menu-list > li {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: left;
}

.mobile-submenu-toggle {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: left;
  gap: 4px;
}

.mobile-submenu-menu li {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}

.mobile-nav-menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.mobile-nav-menu .menu-close-toggle {
  background-color: #efefea;
  border-radius: 12px;
  padding: 8px 12px;
  border: none;
  font-size: 16px;
}

.mobile-submenu-menu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: max-height 0.3s ease-out;
}

.mobile-submenu-dropdown.active .mobile-submenu-menu {
  max-height: 500px;
  /* Adjust this value based on the expected height of your submenu */
}

.mobile-submenu-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
