:root {
  --dark-khaki: #a8d069;
  --dark-slate-gray-2: #404047;
  --medium-sea-green: #30ad64;
  --steel-blue: #3b99d9;
  --light-slate-gray: #8e8e9c;
  --light-sea-green-2: #20ac99;
  --firebrick: #bf3a30;
  --dodger-blue: #2e9dff;
  --indian-red: #cf404d;
  --salmon: #fd7072;
  --tan: #d39f9a;
  --brown: #822e50;
  --cadet-blue: #668cad;
  --dim-gray: #735260;
  --khaki: #face6a;
  --goldenrod: #e2a62b;
  --pale-turquoise: #bfe0ff;
  --steel-blue-2: #2e80b6;
  --dim-gray-3: #676770;
  --light-sky-blue: #69b9ff;
  --silver: #bec3c7;
  --light-sea-green: #25ccbf;
  --indian-red-2: #af4173;
  --black: #192024;
  --sandy-brown-2: #e4b962;
  --tomato: #e64c40;
  --white-smoke: #ecf0f1;
  --salmon-2: #fc7d64;
  --white-smoke-3: #edeff2;
  --white-smoke-2: #f0f0f0;
  --dim-gray-2: #49647b;
  --sandy-brown: #f8c740;
  --dark-slate-gray: #2d3e4f;

  /* User defined colors */
  --angel-sand: rgb(255, 222, 197);
  --dark-sand: rgb(141, 118, 100);
  --light-sand: rgb(227, 184, 142);
  --void-sand: rgb(36, 30, 25);
}

body {
  color: var(--void-sand);
  background-color: white;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--void-sand);
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 300;
  line-height: 36px;
}

h3 {
  color: var(--void-sand);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

/* New box title classes for better readability */
.box-title {
  color: var(--void-sand);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.box-title-white {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.box-text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: var(--void-sand);
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}

.button {
  color: var(--void-sand);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: var(--light-sand);
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s, transform 0.2s ease;
  display: inline-block;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.button:hover {
  background-color: var(--dark-sand);
  transform: translateY(-2px);
}

.button.w--current {
  background-color: var(--dark-sand);
}

.button.full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.button.tab {
  background-color: var(--light-sand);
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover, .button.tab.w--current {
  background-color: var(--light-sand);
}

.navigation-link {
  color: var(--dark-sand);
  transition: all .3s ease-in-out;
  position: relative;
  padding-bottom: 5px;
}

.navigation-link:hover {
  color: var(--void-sand);
}

/* Underline animation for navigation links */
.navigation-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--light-sand);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.navigation-link:hover::after,
.navigation-link.w--current::after {
  width: 100%;
}

.navigation-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem; /* Reduced from 1rem */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 60px; /* Fixed height for consistency */
}

.brand-text {
  color: var(--dark-sand);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
}

.navigation-bar .w-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand-link {
  padding-top: 8px; /* Reduced */
  padding-bottom: 8px; /* Reduced */
  display: inline-block;
  flex-shrink: 0; /* Prevents logo from shrinking */
}

.brand-link img,
.brand-link a img {
  transition: all 0.3s ease;
  filter: brightness(1);
  height:3rem;
}

.brand-link:hover img,
.brand-link:hover a img {
  filter: brightness(1.1) contrast(1.05);
  transform: scale(1.05) rotate(2deg);
}

/* Alternative: target the nested link if you can't change HTML */
.brand-link a {
  transition: all 0.3s ease;
  display: inline-block;
}

.navigation-menu {
  margin-left: auto; /* Pushes nav menu to the right */
}

/* Make sure navbar content splits left/right cleanly */
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Ensure the image/logo stays left */
.brand-link {
  flex-shrink: 0;
}

/* Push the nav links and hamburger to the right */
.navigation-menu {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  align-items: center;
}

/* Keep hamburger aligned with menu on larger screens */
.hamburger-button {
  margin-left: 1rem;
}

/* Disable Webflow's legacy clearfix inside navbar */
#navbar .w-container::before,
#navbar .w-container::after {
  content: none !important;
  display: none !important;
}

.section {
  text-align: center;
  background-color: #fff;
  padding: 80px 10px;
  position: relative;
}

.section.accent {
  background-color: var(--void-sand);
}

.white-box {
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--angel-sand);
  border-radius: 5px;
  padding: 15px;
  /* Equal height for all boxes */
  display: flex;
  flex-direction: column;
  min-height: 350px; /* Ensure all boxes have same minimum height */
}

/* Hover effects for white boxes */
.hoverable-box {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hoverable-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(227, 184, 142, 0.3);
  border-color: var(--light-sand);
}

.hoverable-box-dark {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hoverable-box-dark:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.05);
}

.white-box.transparent {
  background-color: #0000;
  border-style: none;
  text-align: center;
}

.white-box.transparent img {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 50%;
}

/* Ensure consistent alignment in approach section */
.white-box.transparent .box-title-white,
.white-box.transparent .box-text {
  text-align: center;
}

.hero-section {
  padding-top: 180px; /* Reduced from 242px */
  padding-bottom: 180px; /* Reduced from 242px */
}

.hero-section.centered {
  text-align: center;
  /* Lighter, less threatening gradient overlay */
  background-image: linear-gradient(rgba(0, 153, 255, 0.322), rgba(227, 185, 142, 0.692)), url('../images/dunes_GPT_grey.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-bottom: 4px solid var(--light-sand);
  padding-top: 140px; /* Reduced */
  padding-bottom: 140px; /* Reduced */
}

.hero-heading {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 0, 0, 0.2);
}

.hero-subheading {
  color: rgb(255, 243, 220);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
  text-shadow: 
    0 1px 5px rgba(0, 0, 0, 1),
    0 2px 10px rgba(0, 0, 0, 1),
    0 0 20px rgba(0, 0, 0, 1);
}

.hollow-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 30px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  color: var(--light-sand);
  border-color: var(--light-sand);
}

.hollow-button.all-caps {
  text-transform: uppercase;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 16px;
}

.section-heading.centered {
  color: var(--dark-sand);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 300;
}

.section-heading.centered.white {
  color: #fff;
}

.section-subheading.center {
  color: var(--light-sand);
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.section-subheading.center.off-white {
  color: #e8e8e8;
  padding-bottom: 0;
}

.section-title-group {
  margin-bottom: 60px;
}

.form-field {
  border: 0 solid #000;
  border-radius: 3px;
  height: 45px;
  margin-bottom: 17px;
  box-shadow: 0 0 0 1px var(--void-sand);
}

.form-field.text-area {
  height: 110px;
}

.footer {
  padding-top: 35px;
  padding-bottom: 35px;
}

.footer.center {
  text-align: center;
  background-color: #383838;
  border-top: 1px solid #dbdbdb;
}

.footer-text {
  color: #9e9e9e;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.grid-image {
  background-color: var(--light-sand);
  border: 10px solid #fff;
  border-radius: 50%;
  width: 35%;
  margin: 20px auto;
  padding: 20px;
  display: flex;
  box-shadow: 0 0 0 1px var(--dark-sand);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hoverable-box:hover .grid-image {
  transform: scale(1.1);
  background-color: var(--dark-sand);
}

.info-icon {
  float: left;
}

.footer-link {
  color: var(--dark-sand);
  border-bottom: 1px solid #d5d5e0;
  margin-bottom: 6px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--void-sand);
}

.footer-link.with-icon {
  margin-left: 30px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

.tabs-wrapper {
  text-align: center;
}

.fullwidth-image {
  width: 100%;
  margin-bottom: 20px;
}

.white-text {
  color: #fff;
  margin-bottom: 20px;
}

.form {
  margin-top: 40px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

/* Ensure equal height columns - but not for footer */
.w-row:not(.footer .w-row) {
  display: flex;
  flex-wrap: wrap;
}

.w-col:not(.footer .w-col) {
  display: flex;
}

.w-col-4:not(.footer .w-col-4) {
  width: 33.33333333%;
  padding-left: 10px;
  padding-right: 10px;
}

/* Make sure the boxes stretch to fill equal height - but not footer content */
.section .white-box {
  flex: 1;
}

/* Improved list styling in dark section - centered */
ul {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
  text-align: center;
}

ul li {
  margin-bottom: 20px;
  list-style-type: none;
  color: #fff;
  text-align: left;
  display: inline-block;
  width: 100%;
  max-width: 700px;
  position: relative;
  padding-bottom: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

ul li:hover {
  transform: translateX(5px);
}

/* Underline animation for list items */
ul li::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3); /* Subtle white line by default */
  transition: all 0.3s ease-in-out;
}

ul li:hover::after {
  background-color: var(--light-sand); /* Changes to brand color on hover */
}

/* Smaller secondary hero */
/* Smaller Hero Section for Internal Pages */
.hero-section.small {
  text-align: center;
  background-image: linear-gradient(rgba(0, 153, 255, 0.322), rgba(227, 185, 142, 0.692)), url('../images/dunes_GPT_grey.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-bottom: 4px solid var(--light-sand);
  padding-top: 50px;
  padding-bottom: 30px;
  min-height: 100px; /* Ensures consistent height */
}

/* Smaller hero heading */
.hero-heading.small {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 300;
  line-height: 42px;
}

/* Smaller hero subheading */
.hero-subheading.small {
  color: #2e9dff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

/* Optional: Breadcrumb style for navigation */
.hero-breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.hero-breadcrumb a:hover {
  color: #fff;
}

.hero-breadcrumb span {
  margin: 0 8px;
  opacity: 0.6;
}

/* The main alignment system */
.aligned-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.box {
    display: grid;
    grid-template-rows: auto minmax(120px, auto) 1fr;
    /* background: white; */
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    /* padding: 20px; */
    text-align: center;
    transition: all 0.3s ease;
    /*min-height: 300px;*/
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    /*border-color: #4CAF50;*/
}

/* Line 1: Icons align here */
.box .icon {
    grid-row: 1;
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Titles get flexible space but with minimum height */
.box h3 {
    grid-row: 2;
    align-self: end; /* Push title to bottom of its area */
    margin: 0 0 15px 0;
    /* font-size: 18px; */
    /* font-weight: 600; */
    /* color: #333; */
    /* line-height: 1.4; */
}

/* Line 2: All text starts here at exactly the same position */
.box p {
    grid-row: 3;
    align-self: start; /* Start text at top of this area */
    margin-top: 0;
    /*font-size: 14px;*/
    /* line-height: 1.6; */
    /*color: #666;*/
}


.blog-item {
  padding: 20px;
  display: grid;
  border: 2px solid var(--light-sand);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  max-width: 70vw;
}

.contact-item {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 2px solid var(--light-sand);
  border-radius: 8px;
  margin: 20px;
  text-align: left;
  transition: all 0.3s ease;
  max-width: 70vw;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: var(--angel-sand);
}

.contact-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-item h3 {
  margin: 0;
}

/* FAQ styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.faq-question {
  font-size: 18px;
  font-weight: 500;
  color: var(--void-sand);
  padding: 20px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--dark-sand);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}


/* Form styles */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.half {
  flex: 1;
}

.form-label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.form-field {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-field:focus {
  outline: none;
  border-color: var(--light-sand);
  background: rgba(255, 255, 255, 0.15);
}

.form-field::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

select.form-field {
  cursor: pointer;
}

select.form-field option {
  background: var(--void-sand);
  color: #fff;
}

.checkbox-group {
  margin: 30px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
}

/* Enhanced hero styles */
.enhanced-contact-hero {
  position: relative;
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 24px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.float-1 { top: 20%; left: 15%; animation-delay: 0s; }
.float-2 { top: 60%; right: 20%; animation-delay: 2s; }
.float-3 { top: 40%; left: 80%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Quick action buttons */
.contact-quick-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.quick-action-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.quick-action-btn.primary {
  background: var(--light-sand);
  border-color: var(--light-sand);
  color: var(--void-sand);
}

.quick-action-btn.primary:hover {
  background: var(--dark-sand);
}

/* Contact cards */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
  margin-top: 40px;
  place-items: center;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--angel-sand);
  transition: all 0.3s ease;
  max-width: 500px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-color: var(--light-sand);
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--light-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon-wrapper img {
  width: 30px;
  height: 30px;
}

.contact-value {
  font-weight: 500;
  color: var(--void-sand);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--dark-sand);
}

.span-link {
  position:absolute; 
  width:100%;
  height:100%;
  top:0;
  left: 0;

  z-index: 1;
}

/* Screen is pretty narrow (likely phone) */
@media screen and (max-width: 767px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Adjust aligned container */
  .aligned-container {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

@media screen and (max-width: 991px) {
  /* Without this, the svgs become too small. */
  .grid-image {
    width: 50%;
    height: auto;
  }
}
@media screen and (max-width: 991px) {
  .navigation-link {
    color: #ffffff85;
  }

  .navigation-link.w--current {
    color: #fff;
  }

  .navigation-link::after {
    background-color: #fff;
  }

  .hamburger-button.w--open, .navigation-menu {
    background-color: var(--dark-sand);
  }

  .navigation-bar {
    padding: 0.3rem 1rem;
  }

  .brand-text {
    color: var(--dark-sand);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Open Sans, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 25px;
  }
  
  .brand-link {
    padding-top: 8px; /* Reduced */
    padding-bottom: 8px; /* Reduced */
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .brand-link:hover {
    transform: scale(1.05) rotate(-2deg);
  }
  
  .brand-link img {
    transition: all 0.3s ease;
    filter: brightness(1);
  }
  
  .brand-link:hover img {
    filter: brightness(1.1) contrast(1.05);
  }

  .w-col-4:not(.footer .w-col-4) {
    width: 100%;
    margin-bottom: 30px;
  }

  .navbar-inner {
    flex-wrap: wrap;
  }
  .navigation-menu {
    width: 100%;
    /* justify-content: flex-end; */
  }
}