/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* 9-column grid system with 20px gutter and 40px margin */
:root {
  --column-gap: 20px;
}

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Mobile: all columns full width */
.row-fluid .span1,
.row-fluid .span2,
.row-fluid .span3,
.row-fluid .span4,
.row-fluid .span5,
.row-fluid .span6,
.row-fluid .span7,
.row-fluid .span8,
.row-fluid .span9 {
  min-height: 1px;
  width: 100%;
}

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .row-fluid .span1 { width: calc((100% - (var(--column-gap) * 8)) / 9); }
  .row-fluid .span2 { width: calc((100% - (var(--column-gap) * 8)) / 9 * 2 + var(--column-gap)); }
  .row-fluid .span3 { width: calc((100% - (var(--column-gap) * 8)) / 9 * 3 + var(--column-gap) * 2); }
  .row-fluid .span4 { width: calc((100% - (var(--column-gap) * 8)) / 9 * 4 + var(--column-gap) * 3); }
  .row-fluid .span5 { width: calc((100% - (var(--column-gap) * 8)) / 9 * 5 + var(--column-gap) * 4); }
  .row-fluid .span6 { width: calc((100% - (var(--column-gap) * 8)) / 9 * 6 + var(--column-gap) * 5); }
  .row-fluid .span7 { width: calc((100% - (var(--column-gap) * 8)) / 9 * 7 + var(--column-gap) * 6); }
  .row-fluid .span8 { width: calc((100% - (var(--column-gap) * 8)) / 9 * 8 + var(--column-gap) * 7); }
  .row-fluid .span9 { width: calc((100% - (var(--column-gap) * 8)) / 9 * 9 + var(--column-gap) * 8); }
}

@media (max-width: 767px) {
  .row-fluid,
  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}

/* Centered content utility for all modules */
.content-center {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
  width: 100%;
}

.dnd-section .dnd-column {
  padding: 0;
  width: 100%;
  max-width: none;
}


.dnd-section {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.dnd-column{
  max-width: none;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.dnd-row,
.row-fluid {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  
  .dnd-column,
  .dnd-row,
  .row-fluid {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .dnd-section {
    padding-left: 20px !important;
  }

}

/* Force the outermost DnD area and its wrappers to be full width */
.body-container,
.body-container-wrapper,
.container-fluid,
.row-fluid,
.span12,
.widget-span,
.widget-type-cell {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header container */
.header {
  width: 100%;
  background: #fff;
}

.header__content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-left: 40px;
  padding-right: 40px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 40px;
  margin-right: 12px;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(43, 43, 43, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.header__nav a:hover,
.header__nav a:focus {
  color: #2B2B2B;
}

.header__cta {
  margin-left: 24px;
}

.button-wrapper {
  display: flex;
  align-items: center;
}

.header .content-wrapper .button {
  background-color: #3B5AFB;
  color: #fff;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 300;
  padding: 0.25rem 0.5rem;
  width: 100%;
  box-shadow: none;
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
  text-decoration: none !important;
}
.header .content-wrapper .button:hover,
.header .content-wrapper .button:focus {
  background-color: #3B5AFB;
  color: #fff;
  text-decoration: none !important;
  box-shadow:
    0 4px 50px 0 rgba(0,0,0,0.25) inset, /* Inner shadow */
    0 7.69px 23.06px 0 rgba(0,101,255,0.2); /* Drop shadow */
}
.header .content-wrapper .button:active {
  background-color: #2a47c7;
  text-decoration: none !important;

}

.header__menu-toggle {
  display: none;
}

.header__menu-toggle:hover,
.header__menu-toggle:focus {
  background: #b2b2b2;
  border: none;
}

.header__cta--overlay {
  display: none;
}

@media (max-width: 1024px) {
  .content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header__nav ul {
    display: none;
  }
  .header__menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1rem;
    margin-left: auto;
    cursor: pointer;
    color: #2B2B2B;
  }
  .header__cta {
    display: none !important;
  }
  .header__nav.header__nav--open {
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header__nav.header__nav--open ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    align-items: center;
    padding: 0 0 0 0;
    margin: 0;
  }

  .header__nav.header__nav--open ul li {
    padding-bottom: 12px;
  }

  .header__nav.header__nav--open .header__cta--overlay {
    display: flex;
    box-shadow: none !important;
    justify-content: center;
    margin: 0 0 0 0;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(144px + 32px + 24px * 3); /* header + overlay padding + 3 menu items */
    background-color: #fff !important;
  }
  .header__nav.header__nav--open .header__cta--overlay .button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #fff;
    z-index: 100;
    padding: 0;


  }
  .header__nav.header__nav--open .header__cta--overlay .button {
    max-width: 220px;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .header__nav.header__nav--open .header__cta--overlay .button:hover {
   color: #fff;
   background-color: #3B5AFB;
   box-shadow:
    0 4px 50px 0 rgba(0,0,0,0.25) inset, /* Inner shadow */
    0 7.69px 23.06px 0 rgba(0,101,255,0.2); /* Drop shadow */
  }
}
/* Header No Navigation - Separate styles to avoid conflicts */

.header--no-navigation {
  width: 100%;
  background: #fff;
}

.header--no-navigation .header__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.header--no-navigation .header__logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header--no-navigation .header__logo img {
  height: 40px;
  margin-right: 12px;
}

.header--no-navigation .header__cta {
  margin-left: auto;
}

.header--no-navigation .button-wrapper {
  display: flex;
  align-items: center;
}

.header--no-navigation .button {
  background-color: #3B5AFB;
  color: #fff;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 300;
  padding: 0.25rem 0.5rem;
  width: 100%;
  box-shadow: none;
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.header--no-navigation .button:hover,
.header--no-navigation .button:focus {
  background-color: #3B5AFB;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 4px 50px 0 rgba(0,0,0,0.25) inset, /* Inner shadow */
    0 7.69px 23.06px 0 rgba(0,101,255,0.2); /* Drop shadow */
}

.header--no-navigation .button:active {
  background-color: #2a47c7;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .header--no-navigation .header__container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .header--no-navigation .header__cta {
    display: none !important;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer__content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Brand Section */
.footer__brand-logo {
  margin-bottom: 8px;
  z-index: 5;
}

.footer__brand-logo img {
  max-height: 40px;
  width: auto;
}

.footer__brand-tagline {
  font-size: 0.65rem;
  color: #a0a0a0;
  margin: 0;
  line-height: 1.4;
}

/* Contact Section */
.footer__contact {
  margin-top: 20px;
}

.footer__address {
  font-size: 0.65rem;
  color: #d0d0d0;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.footer__email a {
  color: #4a90e2;
  text-decoration: none;
  font-size: 0.65rem;
  transition: color 0.2s ease;
}

.footer__email a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Section Titles */
.footer__section-title {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #ffffff;
  letter-spacing: -0.2px;
}

/* Links */
.footer__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__link-list li {
  margin-bottom: 8px;
}

.footer__link-list a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.65rem;
  transition: color 0.2s ease;
}

.footer__link-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* CTA Button */
.footer__cta-button {
  display: inline-block;
  background-color: #4a90e2;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.65rem;
  transition: all 0.2s ease;
  border: 2px solid #4a90e2;
}

.footer__cta-button:hover {
  background-color: #357abd;
  border-color: #357abd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Social Links */
.footer__social-links {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.65rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.footer__social-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  margin-top: 40px;
}

.footer__copyright {
  text-align: center;
}

.footer__copyright p {
  font-size: 0.55rem;
  color: #a0a0a0;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer__content-wrapper {
    padding: 0 16px;
  }
  
  .footer__main {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer__brand-logo img {
    max-height: 35px;
  }
  
  .footer__social-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer__social-link {
    justify-content: flex-start;
  }
  
  .footer__cta-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer__brand-logo img {
    max-height: 30px;
  }
  
  .footer__section-title {
    font-size: 0.6rem;
  }
}


/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}