@charset "UTF-8";
/* CODESTITCH STYLES, RESET, HEADER/NAVIGATION AND FOOTER */
/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* CodeStitch Root and Helpers */
@media only screen and (min-width: 0rem) {
  :root {
    /* ————— Primary Brand Colours ————— */
    --primary: #1a454b;
    --primary-light: #e8a24c;
    --primary-alt: #349c9d;
    /* ————— Accent Colours ————— */
    --flavor-yellow: #e8a24c;
    --flavor-magenta: #349c9d;
    --flavor-green: #349c9d;
    --flavor-golden: #e8a24c;
    --flavor-pink: #e8a24c;
    --flavor-brown: #1a454b;
    /* ————— Secondary Brand Colours ————— */
    --secondary: #349c9d;
    --secondary-light: #5ab5b6;
    /* ————— Neutrals ————— */
    --white: #ffffff;
    --grey-light: #f5f7fa;
    --grey: #a0a4ab;
    --grey-dark: #343435;
    /* ————— Dark-mode Helpers ————— */
    --dark: #1a454b;
    --dark-alt: #000000;
    --medium: #0f2a2e;
    /* ————— Utility Colours ————— */
    --success: #349c9d;
    --warning: #e8a24c;
    --danger: #e8a24c;
    /* ————— Legacy Compatibility ————— */
    --primaryLight: #e8a24c;
    --headerColor: #1a454b;
    --bodyTextColor: #343435;
    --bodyTextColorWhite: #ffffff;
    /* ————— Typography ————— */
    --font-heading: "Inter", sans-serif;
    --font-body: "Inter", sans-serif;
    /* 17px - 20px */
    --topperFontSize: clamp(1.0625rem, 1.6vw, 1.25rem);
    /* 35px - 53px */
    --headerFontSize: clamp(2.1875rem, 3.9vw, 3.3125rem);
    --bodyFontSize: 1.25rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
  .cs-topper {
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--primary-light);
    text-align: inherit;
  }
  .cs-title {
    position: relative;
    margin: 0 0 1rem 0;
    max-width: 43.75rem;
    font-family: var(--font-heading);
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--headerColor);
    text-align: inherit;
  }
  .cs-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.3em;
    font-weight: 400;
    color: var(--bodyTextColor);
    margin: 0 0 1rem 0;
    text-align: inherit;
  }
  .cs-text {
    margin: 0;
    max-width: 40.625rem;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    text-align: inherit;
  }
  .cs-button-solid {
    z-index: 1;
    position: relative;
    display: inline-block;
    background: var(--primary-light);
    width: auto;
    padding: 0 1.875rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 3.125em;
    font-weight: bold;
    color: var(--bodyTextColorWhite);
    text-align: center;
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(229, 62, 48, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .cs-button-solid:hover, .cs-button-solid:focus {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(229, 62, 48, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(229, 62, 48, 0.2);
    background: linear-gradient(135deg, #F55A4A 0%, var(--primaryLight) 30%, #F55A4A 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .cs-button-solid:hover:before, .cs-button-solid:focus:before {
    left: 100%;
  }
  .cs-button-solid:hover:after, .cs-button-solid:focus:after {
    opacity: 1;
  }
  .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(229, 62, 48, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(229, 62, 48, 0.4), 0 0 8px rgba(229, 62, 48, 0.3);
    transition: all 0.1s ease;
  }
  .cs-hide-on-mobile {
    display: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .cs-hide-on-mobile {
    display: block;
  }
  .cs-hide-on-desktop {
    display: none;
  }
}
/* Fonts and general styles */
@media only screen and (min-width: 0rem) {
  body,
  html {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 100%;
    color: var(--bodyTextColor);
  }
  *,
  *:before,
  *:after {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }
  body {
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    margin: auto;
    width: 92%;
  }
  /* Textured Background (removed - unused) */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--headerColor);
  }
  :where(h1) {
    font-size: var(--headerFontSize);
    margin-block: 0.67em;
  }
  p,
  li,
  a {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  p,
  li {
    color: #353535;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .skip {
    z-index: -1111111;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .skip:focus {
    z-index: 999999;
    opacity: 1;
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Inter Font Family */
  /* Inter Regular - Body Text */
  @font-face {
    font-style: normal;
    font-family: "Inter";
    font-weight: 400;
    font-display: swap;
    src: local(""), url("/assets/fonts/inter-regular.woff2") format("woff2");
  }
  /* Inter Medium - Subtitles */
  @font-face {
    font-style: normal;
    font-family: "Inter";
    font-weight: 500;
    font-display: swap;
    src: local(""), url("/assets/fonts/inter-medium.woff2") format("woff2");
  }
  /* Inter SemiBold - Subtitles */
  @font-face {
    font-style: normal;
    font-family: "Inter";
    font-weight: 600;
    font-display: swap;
    src: local(""), url("/assets/fonts/inter-semibold.woff2") format("woff2");
  }
  /* Inter Bold - Titles */
  @font-face {
    font-style: normal;
    font-family: "Inter";
    font-weight: 700;
    font-display: swap;
    src: local(""), url("/assets/fonts/inter-bold.woff2") format("woff2");
  }
  /* Inter Black - Heavy Titles */
  @font-face {
    font-style: normal;
    font-family: "Inter";
    font-weight: 900;
    font-display: swap;
    src: local(""), url("/assets/fonts/inter-black.woff2") format("woff2");
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    margin: 0;
    padding: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 3000px) {
  body,
  html {
    font-size: 0.55vw;
  }
}
body {
  margin: 0;
  padding: 0;
  word-break: normal;
  word-spacing: normal;
  letter-spacing: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}

.cs-topper {
  font-family: var(--font-heading);
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--primary-light);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-family: var(--font-heading);
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
  word-break: normal;
  word-spacing: normal;
  letter-spacing: normal;
}

/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  body.dark-mode #dark-mode-toggle .cs-sun {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  body.dark-mode #dark-mode-toggle .cs-moon {
    opacity: 0;
    transform: translate(-50%, -150%);
    fill: #fff;
  }
  #dark-mode-toggle {
    z-index: 1000;
    position: absolute;
    top: 0.625rem;
    right: 4.375rem;
    display: block;
    border: none;
    background: transparent;
    height: 3rem;
    width: 3rem;
    overflow: hidden;
    padding: 0;
  }
  #dark-mode-toggle img,
  #dark-mode-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1.25rem;
    width: 1.25rem;
    pointer-events: none;
  }
  #dark-mode-toggle .cs-moon {
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s;
  }
  #dark-mode-toggle .cs-sun {
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, 100%);
    transition: transform 0.3s, opacity 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #dark-mode-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0;
  }
  #dark-mode-toggle:hover {
    cursor: pointer;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: var(--primary);
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    font-family: var(--font-body);
    font-weight: 400;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  #cs-navigation .cs-logo {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0 0;
    height: 2.5rem;
    max-width: 9.125rem;
    width: 40%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
    /* places the image to the left edge of the parent */
    object-position: left;
  }
  #cs-navigation .cs-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0.25rem;
    margin: 0 0 0 auto;
    background-color: transparent;
    height: clamp(2.75rem, 6vw, 3rem);
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    position: relative;
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
  }
  #cs-navigation .cs-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background-color: var(--white);
    height: 2px;
    width: 100%;
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    z-index: -1;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    background-color: var(--primary);
    height: 100vh;
    overflow: hidden;
    transition: transform 0.4s, opacity 0.3s;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    transform-origin: top right;
  }
  #cs-navigation .cs-ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    height: 65vh;
    min-width: 40%;
    width: auto;
    overflow: scroll;
    /* 28px - 40px */
    padding: 3rem clamp(1.75rem, 3vw, 2.5rem) 2rem 4.375rem;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    opacity: 0;
    /* transition from these values */
    transform: translateX(-2.5rem);
    margin-right: 0;
    width: 100%;
    list-style: none;
    transition: transform 0.6s, opacity 0.9s;
    text-align: right;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    /* 18px - 27px */
    font-size: clamp(1.25rem, 2.5vw, 1.8125rem);
    line-height: 1.2em;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary-light);
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: none;
    background: var(--primary-light);
    height: 2px;
    width: 100%;
    border-radius: 2px;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary-light);
    font-weight: 600;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"] {
    overflow: visible;
    position: relative;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]::after {
    content: "Papa Jim!";
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.85) translateY(8px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    font-size: clamp(1.25rem, 2.5vw, 1.8125rem);
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0.875rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(229, 62, 48, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    border: 2px solid var(--primary-light);
    letter-spacing: 0.02em;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]:hover::after, #cs-navigation .cs-li-link[href="/papa-jim/"]:active::after, #cs-navigation .cs-li-link[href="/papa-jim/"]:focus::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]:hover, #cs-navigation .cs-li-link[href="/papa-jim/"]:active, #cs-navigation .cs-li-link[href="/papa-jim/"]:focus {
    color: transparent;
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
  #cs-navigation:before {
    z-index: -11;
    position: absolute;
    top: 100%;
    right: 0;
    /* black blurred overlay */
    content: "";
    opacity: 0;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 0%;
    transition: width 0.5s, opacity 0.3s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
    transition-delay: 0.2s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateX(0);
  }
  #cs-navigation.cs-active:before {
    opacity: 1;
    width: 100%;
  }
}
/* Dark Mode */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-logo {
    /* makes it white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #cs-navigation .cs-line {
    background-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-ul-wrapper {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
    color: var(--bodyTextColorWhite);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    margin: 0.75rem 0 0 0;
    height: auto;
    padding: 1.5rem;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: clamp(1.25rem, 2.5vw, 1.8125rem);
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    background-color: var(--primary);
    height: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 1.5rem 0 1.5rem;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, transform 0.3s, visibility 0.3s;
    gap: 0.75rem;
    transform-origin: top right;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
    text-align: inherit;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    /* 16px - 20px */
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown.cs-active, #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul, #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li, #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container, #cs-navigation .cs-dropdown:hover .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container {
    visibility: hidden !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container .cs-drop-li-nested, #cs-navigation .cs-dropdown:hover .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    display: inline-block;
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    z-index: -100;
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    border-bottom: 5px solid var(--primary);
    margin: 0;
    background-color: #fff;
    min-width: 12.5rem;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
    opacity: 0;
    transform: translateY(-0.625rem);
    display: block;
    height: auto;
    width: 100%;
    list-style: none;
    text-decoration: none;
    font-size: 1.25rem;
    color: var(--bodyTextColor);
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    display: block;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem;
    white-space: nowrap;
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-li-link.cs-drop-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested {
    position: relative;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested:hover .cs-drop-nested-container {
    visibility: hidden !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested:hover .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem;
    font-family: inherit;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--bodyTextColor);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:hover {
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-icon-nested {
    font-size: 0.5rem;
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-nested-container {
    position: absolute;
    left: 100%;
    top: 0;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
    background-color: #fff;
    min-width: 42.5rem;
    border: none;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 10px 16px;
    padding: 1rem;
    margin: 0;
    list-style: none;
    z-index: 1000;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-column {
    min-width: 0;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-column-title {
    font-size: 1.015625rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested {
    padding: 0;
    margin: 0;
    list-style: none;
    transform-origin: top left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem 0;
    padding: 0.75rem 0.5rem;
    width: 30rem;
    border-radius: 0.375rem;
  }
}
@media only screen and (min-width: 64rem) and (max-width: 48rem) {
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested {
    grid-template-columns: 1fr;
    width: 13.75rem;
    padding: 0.5rem;
    gap: 0.125rem 0;
  }
}
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested {
    opacity: 0;
    transform: translateY(-10px);
    list-style: none;
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested:nth-of-type(3n+1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested:nth-of-type(3n+2) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested:nth-of-type(3n+3) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested {
    display: block;
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 1.09375rem;
    color: var(--bodyTextColor);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    border-radius: 0.25rem;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested:hover {
    background-color: #f7f7f7;
    transform: translateX(2px);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.cs-active-nested {
    background-color: var(--primary);
    color: #fff;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.view-all-platforms {
    font-weight: 600;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 1.015625rem;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.view-all-platforms:hover {
    background-color: var(--primaryDark);
    transform: translateX(2px);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:hover + .cs-drop-nested-container {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:hover + .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-nested-container:hover {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-nested-container:hover .cs-drop-li-nested {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:hover .cs-drop-icon-nested {
    transform: rotate(90deg);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested.cs-active .cs-drop-nested-container {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested.cs-active .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested.cs-active .cs-drop-icon-nested {
    transform: rotate(90deg);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cs-navigation .cs-drop-ul {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link-nested.cs-active-nested {
    background-color: var(--primary);
    color: #fff;
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-dropdown-button-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-drop-nested-container {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-drop-nested-container .cs-drop-column-title {
    color: var(--primaryLight);
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-drop-nested-container .cs-drop-li-nested {
    display: flex;
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-drop-nested-container .cs-drop-link-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-drop-icon {
    /* turns it white */
    filter: grayscale(1) brightness(1000%);
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Desktop Navigation Button Styling */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-button-solid {
    font-size: 1.09375rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    text-decoration: none;
    min-width: 8rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #cs-navigation .cs-button-solid:hover:before {
    left: 100%;
  }
  #cs-navigation .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #cs-navigation .cs-button-solid:hover:after {
    opacity: 1;
  }
  #cs-navigation .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #cs-navigation .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #cs-navigation .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: var(--primary);
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1rem;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    font-family: var(--font-body);
    font-weight: 400;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    max-width: 80rem;
    width: 100%;
    gap: 1rem;
  }
  #cs-navigation .cs-nav {
    flex: 0 1 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    height: 4.0625rem;
    max-width: 17.5rem;
    width: auto;
    flex: 0 0 auto;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 0;
    /* 16px - 24px - tighter spacing */
    gap: clamp(1rem, 1.5vw, 1.5rem);
    flex-wrap: nowrap;
  }
  #cs-navigation .cs-li {
    padding: 2rem 0;
    list-style: none;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: block;
    margin: 0;
    text-decoration: none;
    /* 17px - 19px - slightly smaller */
    font-size: clamp(1.0625rem, 0.9vw, 1.1875rem);
    line-height: 1.5em;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: normal;
    word-break: normal;
    overflow: visible;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary-light);
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
    background: var(--primary-light);
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: 0rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary-light);
    height: 3px;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary-light);
    font-weight: 600;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
    background: var(--primary-light);
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"] {
    overflow: visible;
    position: relative;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]::after {
    content: "Papa Jim!";
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.8) translateY(5px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    font-size: clamp(1.0625rem, 0.9vw, 1.1875rem);
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.375rem 0.625rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(229, 62, 48, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    border: 2px solid var(--primary-light);
    letter-spacing: 0.02em;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]:hover {
    color: transparent;
  }
  #cs-navigation .cs-nav-button {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: clamp(1.1125rem, 1vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(232, 162, 76, 0.3);
    white-space: nowrap;
  }
  #cs-navigation .cs-nav-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 156, 157, 0.4);
  }
  #cs-navigation .cs-nav-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(232, 162, 76, 0.25);
  }
}
/* Dark Mode */
@media only screen and (min-width: 64rem) {
  body.dark-mode #cs-navigation {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-logo {
    /* makes it turn white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #cs-navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link:before {
    background-color: var(--primaryLight);
  }
  body.dark-mode #cs-navigation .cs-li-link:hover {
    color: var(--primaryLight);
  }
  body.dark-mode #cs-navigation .cs-nav-button {
    background: var(--primaryLight);
  }
  body.dark-mode #cs-navigation .cs-nav-button:hover {
    background: #c73528;
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #int-hero {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding-top: 3.125rem;
  }
  #int-hero picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    position: relative;
    margin: 0 auto;
    margin-top: 4.375rem;
    margin-bottom: 1.875rem;
    max-width: 31.25rem;
    width: 96%;
    font-size: 2.6666666667rem;
    color: #fff;
    text-align: center;
  }
  #int-hero p {
    display: block;
    margin: auto;
    margin-bottom: 1.875rem;
    max-width: 25rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #int-hero:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #int-hero {
    font-size: 100%;
  }
  #int-hero h1 {
    font-size: 5rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #int-hero {
    background-attachment: fixed;
    min-height: 18.75rem;
    height: auto;
    padding-top: 11.25rem;
    font-size: inherit;
    padding-block-end: 6.25rem;
  }
}
/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #cta {
    position: relative;
    padding: 3.125rem 0;
  }
  #cta .container {
    text-align: center;
  }
  #cta picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #cta picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #cta .title {
    position: relative;
    margin-bottom: 2.25rem;
    font-size: min(9vw, 3rem);
    line-height: 1.2083333333em;
    font-weight: 900;
    color: #fff;
    text-align: center;
  }
  #cta p {
    opacity: 1;
    margin: auto;
    margin-bottom: 2.25rem;
    max-width: 37.375rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #cta:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #cta {
    padding: 10.5rem 0;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #cta {
    position: relative;
    margin-top: 6.25rem;
  }
  #cta .container {
    margin: auto;
    width: 90.0625%;
  }
  #cta picture {
    left: 50%;
    transform: translateX(-50%);
    width: 90.0625%;
  }
  #cta picture:before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
  #cta:before {
    display: none;
  }
  #cta:after {
    z-index: -3;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    opacity: 1;
    transform: translateX(-50%);
    display: block;
    background: url("/assets/svgs/cta-squares.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 69.25rem;
    width: 125rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cta:after {
    display: none;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #footer {
    background: #1c1c1c;
    padding: 1.875rem 0 0.9375rem;
    font-size: 1rem;
  }
  #footer .container {
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 82.5rem;
    width: 96%;
    padding: 0;
  }
  #footer .left-section {
    margin: 0 auto 1.875rem;
    text-align: center;
  }
  #footer .left-section .logo {
    display: inline-block;
    margin: 0 auto 0.9375rem;
    height: 3.125rem;
    width: auto;
    text-align: center;
  }
  #footer .left-section .logo img {
    display: block;
    height: 100%;
    width: auto;
  }
  #footer .left-section p {
    opacity: 0.9;
    margin: 0 auto 0.5rem;
    width: 100%;
    font-size: 0.5625rem;
    line-height: 1.4;
    color: #fff;
    text-align: center;
  }
  #footer .left-section p.tagline {
    font-size: 0.5rem;
    text-transform: uppercase;
  }
  #footer .left-section p.copyright-text {
    font-size: 0.5rem;
    margin-bottom: 0;
  }
  #footer .right-section {
    margin: 0 auto;
    width: 100%;
  }
  #footer .right-section .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
    width: 100%;
  }
  #footer .right-section .footer-columns .footer-column {
    width: 100%;
  }
  #footer .right-section .footer-columns .footer-column.footer-column--contact {
    max-width: 13.75rem;
  }
  #footer .right-section .footer-columns .footer-column h2 {
    position: relative;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: bold;
    color: #fff;
    padding-bottom: 0.5rem;
  }
  #footer .right-section .footer-columns .footer-column h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary-light);
    height: 0.125rem;
    width: 3.75rem;
  }
  #footer .right-section .footer-columns .footer-column ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
    list-style-position: outside;
  }
  #footer .right-section .footer-columns .footer-column ul li {
    opacity: 0.9;
    margin-bottom: 0.3125rem;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: #fff;
  }
  #footer .right-section .footer-columns .footer-column ul li:not(.phone-item):not(.social-section) {
    display: list-item;
  }
  #footer .right-section .footer-columns .footer-column ul li:last-child {
    margin-bottom: 0;
  }
  #footer .right-section .footer-columns .footer-column ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    display: inline;
  }
  #footer .right-section .footer-columns .footer-column ul li a:hover {
    color: var(--primary-light);
  }
  #footer .right-section .footer-columns .footer-column ul li.phone-item {
    list-style: none;
    margin-bottom: 0.4375rem;
    font-size: 0.6875rem;
  }
  #footer .right-section .footer-columns .footer-column ul li.phone-item .whatsapp-icon {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    opacity: 0.9;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section {
    margin-top: 0.75rem;
    list-style: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-heading {
    font-size: 0.625rem;
    margin-bottom: 0;
    color: #fff;
    font-weight: bold;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-icons {
    display: flex;
    gap: 0.625rem;
    align-items: center;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-icons a {
    display: inline-block;
    opacity: 0.9;
    transition: opacity 0.3s;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-icons a:hover {
    opacity: 1;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-icons a img {
    width: 1.125rem;
    height: 1.125rem;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(2) ul li:not(.phone-item):not(.social-section) {
    font-size: 0.5625rem !important;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(2) ul li:not(.phone-item):not(.social-section) a {
    font-size: inherit !important;
  }
  #footer .right-section .footer-columns .footer-column.footer-column--contact ul li.phone-item {
    font-size: 0.5625rem !important;
  }
  #footer .right-section .footer-columns .footer-column.footer-column--contact ul li.phone-item a {
    font-size: inherit !important;
  }
  #footer .right-section .footer-columns .footer-column.footer-column--contact ul li.social-section .social-heading {
    font-size: 0.5625rem !important;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(3) ul li:not(.phone-item):not(.social-section) {
    font-size: 0.5625rem !important;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(3) ul li:not(.phone-item):not(.social-section) a {
    font-size: inherit !important;
  }
  #footer .credit {
    margin: 1.5625rem auto 0;
    width: 96%;
    font-size: 0.6875rem;
    line-height: 1.5;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  #footer .credit .left, #footer .credit .right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  #footer .credit .left {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 48rem) {
  #footer .credit {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  #footer .credit .left, #footer .credit .right {
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (min-width: 0rem) {
  #footer .credit svg {
    margin-top: 0.125rem;
    height: 0.875rem;
    width: auto;
    vertical-align: middle;
  }
  #footer .credit svg.text-danger {
    stroke: var(--primary-light);
  }
  #footer .credit a {
    text-decoration: none;
    font-size: 0.6875rem;
    color: var(--primary-light);
  }
  #footer .credit a:hover {
    text-decoration: underline;
  }
  #footer .credit .brand-link {
    color: var(--primary-light);
    font-weight: 700;
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #footer .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.875rem;
  }
  #footer .left-section {
    margin: 0;
    width: auto;
    min-width: 13.75rem;
    text-align: left;
    flex-shrink: 0;
  }
  #footer .left-section .logo {
    margin-left: 0;
    margin-bottom: 0.75rem;
    height: 2.8125rem;
    text-align: left;
  }
  #footer .left-section p {
    margin-left: 0;
    text-align: left;
  }
  #footer .right-section {
    margin: 0;
    flex: 1;
  }
  #footer .right-section .footer-columns {
    flex-direction: row;
    gap: 1.875rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #footer {
    font-size: 1rem;
    padding: 2.1875rem 0 0.9375rem;
  }
  #footer .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: auto;
    max-width: 82.5rem;
    width: 96%;
    padding: 0;
    gap: 2.5rem;
  }
  #footer .left-section {
    margin: 0;
    width: auto;
    min-width: 15.625rem;
    text-align: left;
    flex-shrink: 0;
  }
  #footer .left-section .logo {
    margin-left: 0;
    margin-bottom: 0.75rem;
    height: 2.8125rem;
    text-align: left;
  }
  #footer .left-section p {
    margin-left: 0;
    margin-bottom: 0.375rem;
    text-align: left;
    font-size: 0.5625rem;
    line-height: 1.4;
  }
  #footer .left-section p.tagline {
    font-size: 0.5rem;
    text-transform: uppercase;
  }
  #footer .left-section p.copyright-text {
    font-size: 0.5rem;
    margin-top: 0.75rem;
  }
  #footer .right-section {
    margin: 0;
    max-width: none;
    flex: 1;
    width: auto;
  }
  #footer .right-section .footer-columns {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  #footer .right-section .footer-columns .footer-column {
    flex: 1;
    min-width: 0;
  }
  #footer .right-section .footer-columns .footer-column.footer-column--contact {
    max-width: 11.875rem;
    flex: 0 0 auto;
    min-width: 10.625rem;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(2) {
    flex: 2.5;
    min-width: 28.125rem;
    max-width: none;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(3) {
    flex: 0.7;
    min-width: 8.75rem;
  }
  #footer .right-section .footer-columns .footer-column h2 {
    position: relative;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: bold;
    color: #fff;
    padding-bottom: 0.375rem;
  }
  #footer .right-section .footer-columns .footer-column h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary-light);
    height: 0.125rem;
    width: 3.125rem;
  }
  #footer .right-section .footer-columns .footer-column ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
    list-style-position: outside;
  }
  #footer .right-section .footer-columns .footer-column ul li {
    opacity: 0.9;
    margin-bottom: 0.25rem;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: #fff;
  }
  #footer .right-section .footer-columns .footer-column ul li:not(.phone-item):not(.social-section) {
    display: list-item;
  }
  #footer .right-section .footer-columns .footer-column ul li:last-child {
    margin-bottom: 0;
  }
  #footer .right-section .footer-columns .footer-column ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    position: relative;
    display: inline;
  }
  #footer .right-section .footer-columns .footer-column ul li a:hover {
    color: var(--primary-light);
  }
  #footer .right-section .footer-columns .footer-column ul li.phone-item {
    list-style: none;
    margin-bottom: 0.375rem;
    font-size: 0.6875rem;
  }
  #footer .right-section .footer-columns .footer-column ul li.phone-item .whatsapp-icon {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    opacity: 0.9;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section {
    margin-top: 0.625rem;
    list-style: none;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-heading {
    font-size: 0.625rem;
    margin-bottom: 0;
    color: #fff;
    font-weight: bold;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-icons {
    display: flex;
    gap: 0.625rem;
    align-items: center;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-icons a {
    display: inline-block;
    opacity: 0.9;
    transition: opacity 0.3s;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-icons a:hover {
    opacity: 1;
  }
  #footer .right-section .footer-columns .footer-column ul li.social-section .social-icons a img {
    width: 1.125rem;
    height: 1.125rem;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(2) ul li:not(.phone-item):not(.social-section) {
    font-size: 0.5625rem !important;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(2) ul li:not(.phone-item):not(.social-section) a {
    font-size: inherit !important;
  }
  #footer .right-section .footer-columns .footer-column.footer-column--contact ul li.phone-item {
    font-size: 0.5625rem !important;
  }
  #footer .right-section .footer-columns .footer-column.footer-column--contact ul li.phone-item a {
    font-size: inherit !important;
  }
  #footer .right-section .footer-columns .footer-column.footer-column--contact ul li.social-section .social-heading {
    font-size: 0.5625rem !important;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(3) ul li:not(.phone-item):not(.social-section) {
    font-size: 0.5625rem !important;
  }
  #footer .right-section .footer-columns .footer-column:nth-child(3) ul li:not(.phone-item):not(.social-section) a {
    font-size: inherit !important;
  }
  #footer .credit {
    margin: 1.25rem auto 0;
    max-width: 82.5rem;
    font-size: 0.6875rem;
  }
  #footer .credit .copyright {
    display: inline-block;
  }
  #footer .credit svg {
    height: 0.875rem;
  }
  #footer .credit a {
    font-size: 0.6875rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #footer {
    background: #061623;
  }
}
#faq-350-350 {
  padding: var(--sectionPadding);
  background: #f7f7f7;
}
#faq-350-350 .cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 3rem);
}
@media only screen and (min-width: 64rem) {
  #faq-350-350 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.25rem;
  }
}
#faq-350-350 .cs-left {
  font-size: min(2.08vw, 0.7em);
  width: 42.875em;
  height: 42em;
  position: relative;
}
@media only screen and (min-width: 64rem) {
  #faq-350-350 .cs-left {
    font-size: min(1vw, 1em);
    flex: none;
    order: 2;
  }
}
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatAnimation2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1em);
  }
  100% {
    transform: translateY(0);
  }
}
#faq-350-350 .cs-left:before {
  content: "";
  width: 7.5em;
  height: 7.5em;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 1;
  position: absolute;
  display: block;
  bottom: 6.25em;
  left: 0;
  z-index: 10;
  animation-name: floatAnimation;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-picture {
  border-radius: 50%;
  border: clamp(6px, 1.2vw, 12px) solid #fff;
  overflow: hidden;
  position: absolute;
  display: block;
}
#faq-350-350 .cs-picture img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#faq-350-350 .cs-picture1 {
  width: 42em;
  height: 42em;
  top: -0.75em;
  left: -0.75em;
}
#faq-350-350 .cs-picture2 {
  width: 12.5em;
  height: 12.5em;
  top: -0.75em;
  left: -0.75em;
  animation-name: floatAnimation2;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-picture3 {
  width: 18.75em;
  height: 18.75em;
  bottom: -0.75em;
  right: -0.75em;
  animation-name: floatAnimation;
  animation-duration: 13s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-content {
  width: 100%;
  max-width: 47.9375rem;
  position: relative; /* Ensure proper stacking context */
}
#faq-350-350 .cs-faq-group {
  padding: 0;
  margin: 0 0 2rem 0; /* Add bottom margin to prevent overlap */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
#faq-350-350 .cs-faq-item {
  list-style: none;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  transition: border-bottom 0.3s;
}
#faq-350-350 .cs-faq-item.active {
  border-color: var(--primary);
}
#faq-350-350 .cs-faq-item.active .cs-button {
  color: var(--primary) !important;
  font-weight: bold;
}
#faq-350-350 .cs-faq-item.active .cs-button:before {
  background-color: var(--primary) !important;
  transform: rotate(315deg) !important;
}
#faq-350-350 .cs-faq-item.active .cs-button:after {
  background-color: var(--primary) !important;
  transform: rotate(-315deg) !important;
}
#faq-350-350 .cs-button {
  font-size: 1.25rem;
  line-height: 1.2em;
  text-align: left;
  font-weight: bold;
  padding: clamp(1rem, 1.3vw, 1.25rem);
  border: none;
  background: transparent;
  color: var(--headerColor);
  display: block;
  width: 100%;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
#faq-350-350 .cs-button:hover {
  cursor: pointer;
}
#faq-350-350 .cs-button:before {
  content: "";
  width: 0.5rem;
  height: 0.125rem;
  background-color: var(--headerColor);
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  display: block;
  top: 45%;
  right: 1.5rem;
  transform: rotate(45deg);
  transform-origin: left center;
  transition: transform 0.5s;
}
#faq-350-350 .cs-button:after {
  content: "";
  width: 0.5rem;
  height: 0.125rem;
  background-color: var(--headerColor);
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  display: block;
  top: 45%;
  right: 1.3125rem;
  transform: rotate(-45deg);
  transform-origin: right center;
  transition: transform 0.5s;
}
#faq-350-350 .cs-button-text {
  width: 80%;
  display: block;
}
#faq-350-350 .cs-item-p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5em;
  width: 90%;
  margin: 0 0 1rem 0; /* Add bottom margin */
  color: var(--bodyTextColor);
  transition: opacity 0.3s, padding-bottom 0.3s, height 0.3s;
  position: relative; /* Ensure proper positioning */
  z-index: 1; /* Ensure content appears above background elements */
}
body.dark-mode #faq-350-350 {
  background-color: var(--medium);
}
body.dark-mode #faq-350-350 .cs-picture {
  border-color: var(--accent);
}
body.dark-mode #faq-350-350 .cs-topper {
  color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-title, body.dark-mode #faq-350-350 .cs-item-p {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #faq-350-350 .cs-faq-item {
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark-mode #faq-350-350 .cs-faq-item.active {
  border-color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button {
  color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button:before, body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button:after {
  background-color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-button {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #faq-350-350 .cs-button:before, body.dark-mode #faq-350-350 .cs-button:after {
  background-color: var(--bodyTextColorWhite);
}

/* Specific override styles to ensure proper behavior */
#faq-350-350 .cs-faq-item.active .cs-item-p {
  height: auto !important;
  opacity: 1 !important;
  padding: 1rem 1.5rem 1.5rem 1.5rem !important;
  overflow: visible !important;
  margin-bottom: 1rem !important; /* Ensure bottom margin */
}

#faq-350-350 .cs-faq-item:not(.active) .cs-item-p {
  height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 1.5rem !important;
  margin: 0 !important; /* Remove margin when collapsed */
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-45 {
    padding: var(--sectionPadding);
    position: relative;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
  }
  #gallery-45 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-45 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #gallery-45 .cs-image-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #gallery-45 .cs-item {
    list-style: none;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }
  #gallery-45 .cs-item:hover .cs-hover-box {
    opacity: 1;
  }
  #gallery-45 .cs-item:hover .cs-icon {
    /* return to original position */
    transform: rotateY(0);
  }
  #gallery-45 .cs-item:hover .cs-h3 {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-45 .cs-item:hover .cs-hover-box-text {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-45 {
    /* Portfolio Link Styles */
  }
  #gallery-45 .cs-portfolio-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #gallery-45 .cs-portfolio-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  #gallery-45 {
    /* Portfolio Caption Styles */
  }
  #gallery-45 .cs-portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 36, 60, 0.95) 0%, rgba(25, 121, 191, 0.95) 100%);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  #gallery-45 .cs-portfolio-caption h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #gallery-45 .cs-portfolio-caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 1;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  #gallery-45 .cs-portfolio-link:hover .cs-portfolio-caption {
    transform: translateY(0);
  }
  #gallery-45 .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #gallery-45 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #gallery-45 .cs-button-solid {
    font-size: 1.25rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColorWhite);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #gallery-45 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #gallery-45 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #gallery-45 .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #gallery-45 .cs-button-solid:hover:before {
    left: 100%;
  }
  #gallery-45 .cs-button-solid:hover:after {
    opacity: 1;
  }
  #gallery-45 .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #gallery-45 .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
  #gallery-45 .cs-image-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }
  #gallery-45 .cs-item {
    grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-45 .cs-item {
    grid-column: span 3;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #gallery-45 .cs-title,
  body.dark-mode #gallery-45 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #gallery-45 .cs-text {
    opacity: 0.8;
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-57 {
    padding: var(--sectionPadding);
  }
  #reviews-57 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    row-gap: clamp(3rem, 6vw, 4rem);
    /* 60px - 108px */
    column-gap: clamp(3.7rem, 8vw, 6.75rem);
  }
  #reviews-57 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
  }
  #reviews-57 .cs-text {
    margin-bottom: 2rem;
  }
  #reviews-57 .cs-review-item {
    margin-bottom: 1.5rem;
    padding: 1rem 0 1rem 1.5rem;
    position: relative;
    border-left: 0.3125rem solid var(--primaryLight);
    background: rgba(255, 186, 67, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
  }
  #reviews-57 .cs-stars {
    color: #ffba43;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  #reviews-57 .cs-review-text {
    /* 15px - 17px */
    font-size: clamp(15px, 5vw, 1.0625rem);
    line-height: 1.5em;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    font-style: italic;
  }
  #reviews-57 .cs-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0;
    display: block;
    color: var(--primary);
  }
  #reviews-57 .cs-button-solid {
    font-size: 1.25rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColorWhite);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #reviews-57 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #reviews-57 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #reviews-57 .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #reviews-57 .cs-button-solid:hover:before {
    left: 100%;
  }
  #reviews-57 .cs-button-solid:hover:after {
    opacity: 1;
  }
  #reviews-57 .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #reviews-57 .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
  #reviews-57 .cs-picture {
    width: 98%;
    margin: 0;
    position: relative;
    display: block;
    /* width divided by height 320/340 */
    aspect-ratio: 320/340;
    /* 8px - 12px */
    margin-left: clamp(0.5rem, 1vw, 0.75rem);
  }
  #reviews-57 .cs-picture:before {
    content: "";
    position: absolute;
    height: 12.125rem;
    width: 12.125rem;
    background: var(--primaryLight);
    opacity: 1;
    /* -8px to -12px */
    /* the calc function sets the clamp value to a negative number */
    top: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
    right: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
  }
  #reviews-57 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-57 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  #reviews-57 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #reviews-57 .cs-picture {
    /* 336px - 530px */
    width: clamp(21rem, 44vw, 33.125rem);
    /* 534px - 641px */
    height: clamp(33.375rem, 58.6vw, 40.0625rem);
    /* reset margin to account for the pseudo element square positioning */
    margin: 0.75rem 0.75rem 0 0;
    margin-right: 0;
    margin-bottom: 0;
    /* no longer need aspect ratio */
    aspect-ratio: initial;
    /* prevents flexbox from squishing it */
    flex: none;
    /* sends it to the right in the second position */
    order: 2;
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-pedigrees {
    padding: var(--sectionPadding);
    position: relative;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
  }
  #gallery-pedigrees .cs-container {
    width: 100%;
    max-width: 69rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-pedigrees .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #gallery-pedigrees .cs-image-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #gallery-pedigrees .cs-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }
  #gallery-pedigrees .cs-item:hover .cs-hover-box {
    opacity: 1;
  }
  #gallery-pedigrees .cs-item:hover .cs-icon {
    /* return to original position */
    transform: rotateY(0);
  }
  #gallery-pedigrees .cs-item:hover .cs-h3 {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-pedigrees .cs-item:hover .cs-hover-box-text {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-pedigrees .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #gallery-pedigrees .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #gallery-pedigrees .cs-hover-box {
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(30, 36, 60, 0.95) 0%, rgba(25, 121, 191, 0.95) 100%);
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Prevents padding from contributing to height & width */
    box-sizing: border-box;
    /* Sets stage for 3d transform animation */
    perspective: 700px;
    top: 0;
    left: 0;
    z-index: 10;
    /* prevents mouse from being able to interact with these elements */
    pointer-events: none;
    transition: opacity 0.3s;
  }
  #gallery-pedigrees .cs-icon {
    /* 50px - 60px */
    width: clamp(3.125rem, 5vw, 3.75rem);
    height: clamp(3.125rem, 5vw, 3.75rem);
    /* 16px - 32px */
    margin-bottom: clamp(1rem, 5vw, 2rem);
    border-radius: 50%;
    background-color: #fff;
    outline: 0.5rem solid fade(#fff, 70%);
    /* Start with the icon box rotated 90deg */
    transform: rotateY(90deg);
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: none;
    transition: transform 0.5s;
  }
  #gallery-pedigrees .cs-icon img {
    width: 1.25rem;
    height: 1.25rem;
  }
  #gallery-pedigrees .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 auto;
    max-width: 16.875rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    margin-bottom: 0.5rem;
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition-delay: 0.1s;
  }
  #gallery-pedigrees .cs-hover-box-text {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1vw, 1rem);
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 16.875rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition-delay: 0.2s;
  }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
  #gallery-pedigrees .cs-image-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }
  #gallery-pedigrees .cs-item {
    grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-pedigrees .cs-item {
    grid-column: span 4;
  }
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1785 {
    /* Reduced padding to fit content in viewport */
    padding: clamp(6rem, 12vw, 10rem) 1rem;
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1785 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
  }
  #hero-1785 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
  }
  #hero-1785 .cs-title {
    /* 49px - 84px */
    font-size: clamp(3.0625rem, 6vw, 5.25rem);
    /* Prevent unnecessary line breaks on larger screens */
    max-width: 100%;
  }
  #hero-1785 .cs-title,
  #hero-1785 .cs-subtitle,
  #hero-1785 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #hero-1785 .cs-topper {
    color: #1979bf;
  }
  #hero-1785 .cs-text {
    margin-bottom: 2rem;
    text-align: center !important;
    width: 100%;
    max-width: none;
  }
  #hero-1785 .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }
  #hero-1785 .cs-button-solid {
    font-size: 1.125rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #hero-1785 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #hero-1785 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #hero-1785 .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #hero-1785 .cs-button-solid:hover:before {
    left: 100%;
  }
  #hero-1785 .cs-button-solid:hover:after {
    opacity: 1;
  }
  #hero-1785 .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #hero-1785 .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
  #hero-1785 .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
  }
  #hero-1785 .cs-graphic-dark {
    display: none;
  }
  #hero-1785 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-1785 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
    opacity: 0.7;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-1785 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Medium Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #hero-1785 .cs-content {
    /* Allow text to use more horizontal space on medium-large screens */
    max-width: 59.375rem;
  }
}
/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  #hero-1785 {
    /* Reduced padding for large screens to fit in viewport */
    padding: clamp(8rem, 10vw, 12rem) 1rem;
  }
  #hero-1785 .cs-content {
    /* Allow text to use more horizontal space on large screens */
    max-width: 68.75rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-1785 .cs-background:before {
    opacity: 0.85;
  }
  body.dark-mode #hero-1785 .cs-graphic {
    display: none;
  }
  body.dark-mode #hero-1785 .cs-graphic-dark {
    display: block;
  }
}
/* ============================================ */
/*           Data Center Hero Enhanced         */
/* ============================================ */
/* ============================================ */
/*              Base Styles                    */
/* ============================================ */
/* Mobile - 0px */
@media only screen and (min-width: 0rem) {
  .hero-data-center-enhanced {
    /* Enhanced height for better visual impact */
    min-height: 100vh;
    padding: clamp(6rem, 12vw, 10rem) 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-data-center-enhanced .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 20; /* Ensure content is above background */
  }
  .hero-data-center-enhanced .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
    position: relative;
    z-index: 25; /* Ensure text is above everything */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Even tighter spacing for mobile */
    padding-top: 0; /* Remove top padding entirely */
    margin-top: -4rem; /* Move everything up more for mobile */
  }
  /* ============================================ */
  /*              Text Elements                  */
  /* ============================================ */
  /* Base topper styles - applies to all screen sizes */
  .hero-data-center-enhanced .cs-topper {
    color: var(--primaryLight) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 0 !important;
    position: relative !important;
    top: -3rem !important; /* Move topper up more for mobile */
    z-index: 30 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center !important;
  }
  .hero-data-center-enhanced .cs-branding {
    margin-bottom: 0; /* Remove bottom margin since we're using gap */
    position: relative;
    top: -3rem; /* Move logo up more for mobile */
    z-index: 20; /* Logo behind topper text */
  }
  .hero-data-center-enhanced .cs-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 40px rgba(25, 121, 191, 0.4)) drop-shadow(0 0 60px rgba(25, 121, 191, 0.2)); /* Add blue glow effect */
  }
  .hero-data-center-enhanced .cs-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(25, 121, 191, 0.8)) drop-shadow(0 0 50px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 70px rgba(25, 121, 191, 0.4)); /* Enhanced glow on hover */
  }
  .hero-data-center-enhanced .cs-title {
    /* 49px - 84px */
    font-size: clamp(3.0625rem, 6vw, 5.25rem);
    max-width: 100%;
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0; /* Remove margin completely */
    line-height: 1.1;
    position: relative;
    top: -4rem; /* Move title up more for mobile */
  }
  .hero-data-center-enhanced .cs-subtitle {
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0; /* Remove margin completely */
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -3.5rem; /* Move subtitle up more for mobile */
  }
  .hero-data-center-enhanced .cs-text {
    color: var(--bodyTextColorWhite);
    margin-bottom: 1rem; /* Reduced margin further */
    text-align: center !important;
    width: 100%;
    max-width: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.4;
    position: relative;
    top: -3rem; /* Move text up more for mobile */
  }
  /* ============================================ */
  /*              Call-to-Action                */
  /* ============================================ */
  .hero-data-center-enhanced .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    position: relative;
    top: 1.5rem; /* Move CTA button up slightly for mobile */
  }
  .hero-data-center-enhanced .cs-button-solid {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  /* Secondary button styling */
  .hero-data-center-enhanced .cs-button-solid.cs-button2 {
    background: transparent;
    border: 2px solid var(--primaryLight);
    color: var(--primaryLight);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.2);
  }
  .hero-data-center-enhanced .cs-button-solid.cs-button2:hover {
    background: var(--primaryLight);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.4);
  }
  /* ============================================ */
  /*              Background Elements            */
  /* ============================================ */
  /* Animated background positioning */
  .hero-data-center-enhanced .cs-background-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }
  .hero-data-center-enhanced .hero__stage {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
  }
  /* Mobile aspect ratio (default) */
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 430/930;
  }
  /* Desktop aspect ratio */
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823;
    /* Ensure proper scaling for different display scaling factors */
    transform: scale(1);
    transform-origin: center center;
  }
}
@media only screen and (min-width: 0rem) {
  .hero-data-center-enhanced .hero__stage > picture,
  .hero-data-center-enhanced .hero__stage > picture > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-data-center-enhanced .hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    contain: paint;
    will-change: transform, opacity;
    z-index: 10;
    /* Ensure perfect alignment with background */
    transform: scale(1);
    transform-origin: center center;
  }
  .hero-data-center-enhanced .hero__overlay svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    /* Responsive scaling - no fixed scale values */
    transform: scale(1) !important;
    transform-origin: center center !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }
}
@media only screen and (min-width: 0rem) {
  /* Preserve original hero divider positioning */
  .hero-data-center-enhanced .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
  }
  .hero-data-center-enhanced .cs-graphic-dark {
    display: none;
  }
}
/* ============================================ */
/*              Tablet Styles                   */
/* ============================================ */
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
    gap: 1rem; /* Tighter spacing */
    padding-top: 0; /* No padding */
    margin-top: -4rem; /* Move everything up a bit more */
  }
  .hero-data-center-enhanced .cs-logo {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 25px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 50px rgba(25, 121, 191, 0.4)) drop-shadow(0 0 75px rgba(25, 121, 191, 0.2)); /* Larger glow for tablet */
  }
  .hero-data-center-enhanced .cs-logo:hover {
    filter: drop-shadow(0 0 35px rgba(25, 121, 191, 0.8)) drop-shadow(0 0 60px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 85px rgba(25, 121, 191, 0.4)); /* Enhanced glow on hover */
  }
  .hero-data-center-enhanced .cs-topper {
    font-size: 1.2rem !important;
    top: -2.5rem !important; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-branding {
    top: -2.5rem; /* Move logo down to be between title and subtitle */
    z-index: 20;
  }
  .hero-data-center-enhanced .cs-title {
    top: -4rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-subtitle {
    font-size: 1.3rem;
    max-width: 85%;
    top: -3.5rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-text {
    top: -3rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-button-group {
    top: 1.5rem; /* Move CTA button down a bit more on tablet */
  }
}
/* ============================================ */
/*              Desktop Styles                  */
/* ============================================ */
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
    gap: 0.75rem; /* Tighter gap between elements */
    margin-top: -5rem; /* Move everything up more on desktop */
  }
  .hero-data-center-enhanced .cs-topper {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    top: -0.25rem !important; /* Adjusted for desktop */
  }
  .hero-data-center-enhanced .cs-branding {
    top: -1rem; /* Better centered between topper and H1 */
    z-index: 20;
  }
  .hero-data-center-enhanced .cs-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
    top: -2rem; /* Move up even closer to logo */
    line-height: 1.1 !important;
    max-width: 90% !important;
    margin-bottom: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-subtitle {
    font-size: 1.4rem !important;
    max-width: 80% !important;
    top: -2.5rem; /* Move up closer to title */
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-text {
    font-size: 1.2rem !important;
    top: -3rem; /* Move up closer to subtitle */
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-button-group {
    top: 3rem; /* Push down more for better spacing */
  }
  .hero-data-center-enhanced .cs-button-solid {
    padding: 0.75rem 3rem !important;
    line-height: 1.1 !important;
    font-size: 0.85rem !important;
    min-width: auto !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
  /* Hero divider background to match next section */
  .hero-data-center-enhanced {
    background-color: #f7f7f7 !important; /* Match services-grid background */
  }
}
/* ============================================ */
/*              Large Desktop Styles            */
/* ============================================ */
/* Medium Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
  }
}
/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  .hero-data-center-enhanced {
    padding: clamp(8rem, 10vw, 12rem) 1rem;
  }
  .hero-data-center-enhanced .cs-content {
    max-width: 68.75rem;
  }
}
/* ============================================ */
/*              Dark Mode Support               */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  body.dark-mode .hero-data-center-enhanced .cs-graphic {
    display: none;
  }
  body.dark-mode .hero-data-center-enhanced .cs-graphic-dark {
    display: block;
  }
}
/* ============================================ */
/*              Responsive Aspect Ratios        */
/* ============================================ */
@media only screen and (min-width: 64rem) and (max-width: 1023px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 16/9; /* Standard widescreen */
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823; /* Desktop original */
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 21/9; /* Ultrawide */
  }
}
@media only screen and (min-width: 1920px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823; /* 4K and larger */
  }
}
/* ============================================ */
/*              High-DPI Display Support        */
/* ============================================ */
/* Specific fix for 2048x1152 resolution with 125% scaling */
@media only screen and (min-width: 64rem) and (max-width: 2048px) {
  .hero-data-center-enhanced .hero__stage {
    /* Adjust for specific resolution */
    max-width: 100vw;
    max-height: 100vh;
  }
  .hero-data-center-enhanced .hero__overlay {
    /* Ensure overlay matches exactly */
    max-width: 100vw;
    max-height: 100vh;
  }
}
/* High-DPI and scaling specific fixes */
@media only screen and (min-width: 64rem) and (min-resolution: 1.25dppx) {
  .hero-data-center-enhanced .hero__stage {
    /* Force exact pixel alignment for high-DPI displays */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .hero-data-center-enhanced .hero__overlay svg {
    /* Ensure SVG aligns perfectly with background */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
/* ============================================ */
/*              Animation Styles                */
/* ============================================ */
/* LED animation styles */
.led {
  transition: opacity 0.2s ease-in-out !important; /* Faster transitions */
  will-change: opacity; /* GPU acceleration */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__overlay * {
    animation: none !important;
    transition: none !important;
  }
}
/* ============================================ */
/*              Comparison Table                */
/* ============================================ */
/* Mobile - 0px */
@media only screen and (min-width: 0rem) {
  #comparison-table {
    padding: var(--sectionPadding);
    background-color: var(--grey-light);
  }
  #comparison-table .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #comparison-table .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
    margin: auto;
    margin-bottom: 3rem;
  }
  #comparison-table .cs-topper {
    color: var(--primaryLight);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
  }
  #comparison-table .cs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center !important;
    max-width: 43.75rem;
    margin: 0 auto 1rem auto;
    color: var(--headerColor);
  }
  #comparison-table .cs-text {
    font-size: 1.1rem;
    line-height: 1.5em;
    text-align: center !important;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto;
    color: var(--bodyTextColor);
  }
  /* Table Container */
  #comparison-table .cs-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  /* Table Styles */
  #comparison-table .cs-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }
  /* Header Styles */
  #comparison-table .cs-comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    border-bottom: 2px solid var(--primaryLight);
  }
  #comparison-table .cs-feature-header {
    background: var(--primary);
    text-align: left;
    padding-left: 1.5rem;
  }
  #comparison-table .cs-crafted-header {
    background: var(--primaryLight);
  }
  /* Bookmark specific styles */
  #comparison-table .cs-bookmark {
    text-align: center;
  }
  /* IONOS specific styles */
  #comparison-table .cs-ionos {
    text-align: center;
  }
  #comparison-table .cs-canva-header {
    background: #ff6b35;
  }
  #comparison-table .cs-wix-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-shopify-header {
    background: #96bf48;
  }
  #comparison-table .cs-squarespace-header {
    background: #000000;
  }
  #comparison-table .cs-webflow-header {
    background: #4353ff;
  }
  #comparison-table .cs-bigcommerce-header {
    background: #121118;
  }
  #comparison-table .cs-magento-header {
    background: #f26322;
  }
  #comparison-table .cs-woocommerce-header {
    background: #96588a;
  }
  #comparison-table .cs-hubspot-header {
    background: #ff7a59;
  }
  #comparison-table .cs-ionos-header {
    background: #003d82;
  }
  #comparison-table .cs-carrd-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-bookmark-header {
    background: #ff6b35;
  }
  #comparison-table .cs-duda-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-prestashop-header {
    background: #df0067;
  }
  #comparison-table .cs-pagecloud-header {
    background: #ff6b35;
  }
  #comparison-table .cs-opencart-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-notion-header {
    background: #000000;
  }
  #comparison-table .cs-joomla-header {
    background: #5091cd;
  }
  #comparison-table .cs-framer-header {
    background: #0055ff;
  }
  #comparison-table .cs-drupal-header {
    background: #0678be;
  }
  #comparison-table .cs-wordpress-header {
    background: #4ecdc4;
  }
  #comparison-table .cs-godaddy-header {
    background: #1f2937;
  }
  #comparison-table .cs-weebly-header {
    background: #8b5cf6;
  }
  #comparison-table .cs-bigcommerce-header {
    background: #059669;
  }
  #comparison-table .cs-magento-header {
    background: #dc2626;
  }
  #comparison-table .cs-google-sites-header {
    background: #ea4335;
  }
  /* Row Styles */
  #comparison-table .cs-comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
  }
  #comparison-table .cs-feature {
    text-align: left;
    font-weight: 600;
    color: var(--headerColor);
    background: #f8fafc;
    padding-left: 1.5rem;
  }
  /* Cell Content */
  #comparison-table .cs-check {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 0.5rem;
  }
  #comparison-table .cs-x {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 0.5rem;
  }
  #comparison-table .cs-value {
    font-weight: 500;
    color: var(--bodyTextColor);
  }
  /* Table Footnote */
  #comparison-table .cs-table-footnote {
    margin-bottom: 2rem;
    padding: 0 1rem;
    text-align: center;
  }
  #comparison-table .cs-table-footnote p {
    font-size: 0.9rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin: 0;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
  }
  #comparison-table .cs-table-footnote strong {
    color: var(--primaryLight);
    font-weight: 700;
  }
  /* CTA Group */
  #comparison-table .cs-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem; /* Add top margin to create space */
  }
  #comparison-table .cs-button-solid {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 3rem;
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #comparison-table .cs-button-solid.cs-primary {
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  #comparison-table .cs-button-solid.cs-secondary {
    background: transparent;
    border: 2px solid var(--primaryLight);
    color: var(--primaryLight);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.2);
  }
  #comparison-table .cs-button-solid.cs-secondary:hover {
    background: var(--primaryLight);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.4);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #comparison-table .cs-comparison-table {
    font-size: 1.25rem;
  }
  #comparison-table .cs-comparison-table th,
  #comparison-table .cs-comparison-table td {
    padding: 1.25rem 1rem;
  }
  #comparison-table .cs-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #comparison-table .cs-comparison-table {
    font-size: 1.1rem;
  }
  #comparison-table .cs-comparison-table th,
  #comparison-table .cs-comparison-table td {
    padding: 1.5rem 1.25rem;
  }
  #comparison-table .cs-table-container {
    max-width: 70rem;
    margin: 0 auto 3rem auto;
  }
  #comparison-table .cs-table-footnote {
    margin-bottom: 2.5rem;
    padding: 0 2rem;
  }
  #comparison-table .cs-table-footnote p {
    font-size: 1.25rem;
  }
  #comparison-table .cs-cta-group {
    margin-top: 1.5rem;
  }
}
/* ============================================ */
/*              Trust Badges                    */
/* ============================================ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.trust-badge img {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  /* Remove the filter that was making icons look odd */
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trust-badges {
    gap: 0.5rem;
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badge {
    padding: 0.35rem 0.5rem;
    min-height: 44px; /* Better touch target */
  }
  .trust-badge span {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .trust-badge img {
    width: 18px;
    height: 18px;
  }
}
/* Extra small mobile devices */
@media (max-width: 480px) {
  .trust-badges {
    gap: 0.4rem;
  }
  .trust-badge {
    padding: 0.3rem 0.4rem;
  }
  .trust-badge span {
    font-size: 0.7rem;
  }
  .trust-badge img {
    width: 16px;
    height: 16px;
  }
}
.website-speed-test {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
}
.website-speed-test:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .website-speed-test {
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    position: fixed !important;
    transform: translateZ(0);
    will-change: transform;
  }
}
@media (max-width: 480px) {
  .website-speed-test {
    bottom: 15px;
    right: 15px;
    z-index: 9999;
  }
}
@media (max-width: 1024px) {
  .website-speed-test {
    z-index: 9999 !important;
    position: fixed !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.speed-test-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.speed-test-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: pulse-ripple 2s infinite;
  z-index: -1;
}
.speed-test-button:hover {
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

@keyframes pulse-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.speed-test-text {
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .speed-test-text {
    font-size: 12px;
  }
}

.speed-test-icon {
  font-size: 18px;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .speed-test-icon {
    font-size: 16px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.speed-test-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.speed-test-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInDesktop 0.3s ease;
}
@media (max-width: 768px) {
  .speed-test-modal-content {
    margin: 15% auto;
    padding: 30px 20px;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    animation: slideIn 0.3s ease;
  }
}
@media (max-width: 480px) {
  .speed-test-modal-content {
    margin: 20% auto;
    padding: 25px 20px;
    width: 92%;
    top: 45%;
    transform: translate(-50%, -50%);
  }
}

@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes slideInDesktop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.speed-test-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #666;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.speed-test-close:hover {
  color: #333;
}

.speed-test-header {
  text-align: center;
  margin-bottom: 30px;
}

.speed-test-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .speed-test-title {
    font-size: 24px;
  }
}

.speed-test-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .speed-test-subtitle {
    font-size: 14px;
  }
}

.speed-test-form .form-group {
  margin-bottom: 25px;
}
.speed-test-form .form-label {
  display: block;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
  font-size: 16px;
}
.speed-test-form .url-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.speed-test-form .url-input-wrapper:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.speed-test-form .url-prefix {
  background: #f7fafc;
  color: #64748b;
  padding: 15px 12px;
  font-weight: 600;
  border-right: 1px solid #e2e8f0;
  font-size: 14px;
}
.speed-test-form .url-input {
  border: none;
  outline: none;
  padding: 15px;
  font-size: 16px;
  width: 100%;
  background: transparent;
}
.speed-test-form .url-input::placeholder {
  color: #a0aec0;
}

.speed-test-submit {
  margin-top: 30px;
}

.speed-test-button-submit {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.speed-test-button-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.speed-test-button-submit:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .speed-test-button-submit {
    padding: 16px 20px;
    font-size: 16px;
  }
}

.button-text {
  font-size: 18px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .button-text {
    font-size: 16px;
  }
}

.button-subtext {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .button-subtext {
    font-size: 11px;
  }
}

.speed-test-privacy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}
.speed-test-privacy .privacy-link {
  color: #667eea;
  text-decoration: underline;
  font-weight: 600;
}
.speed-test-privacy .privacy-link:hover {
  color: #5a67d8;
}
@media (max-width: 768px) {
  .speed-test-privacy {
    font-size: 13px;
  }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-448 {
    padding: var(--sectionPadding);
  }
  #services-448 .cs-container {
    width: 100%;
    /* changes at 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-448 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-448 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 16px - 20px */
    column-gap: clamp(1rem, 1.5vw, 1.25rem);
    /* 24px - 60px */
    row-gap: clamp(1.5rem, 5vw, 3.75rem);
  }
  #services-448 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 22.5rem;
    /* changes at desktop */
    padding-top: 9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #services-448 .cs-item:hover .cs-picture img {
    transform: scale(1.2);
    opacity: 0.4;
  }
  #services-448 .cs-item:hover .cs-flex:before {
    opacity: 1;
  }
  #services-448 .cs-picture {
    width: 100%;
    /* changes at desktop */
    height: 15.625rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    /* clips the corners of the image */
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-448 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it behave like a background image */
    object-fit: cover;
    /* positions top of image to the top of the container */
    object-position: top;
    transition: transform 0.9s, opacity 0.5s;
  }
  #services-448 .cs-flex {
    text-align: center;
    width: 88%;
    padding: 0 1.5rem 1.5rem 1.5rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    border: 1px solid #dad9e3;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #services-448 .cs-flex:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  #services-448 .cs-flex:before {
    /* hover border box */
    content: "";
    background: transparent;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    border: 4px solid var(--primary);
    border-radius: 0.75rem;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    opacity: 0;
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    transition: opacity 0.5s;
  }
  #services-448 .cs-wrapper {
    /* 80px - 120px */
    width: clamp(5rem, 9.2vw, 7.5rem);
    height: clamp(5rem, 9.2vw, 7.5rem);
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    /* we use the same clamp value for height & width, but multiple by -.5 so it will be a negative value, and be half of the height.  Negative margins pull things toward the element so they overlap them, in this case we want the .cs-wrapper to overlap .cs-flex by half its height, so we use the same clamp for height and half it for the margin top value */
    margin-top: calc(clamp(5rem, 9.2vw, 7.5rem) * -0.5);
    border-radius: 50%;
    border: 4px solid var(--primary);
    background-color: #fff;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  #services-448 .cs-icon {
    /* 48px - 64px */
    width: clamp(3rem, 4.3vw, 4rem);
    height: auto;
    display: block;
  }
  #services-448 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 1.9vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
  }
  #services-448 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    font-weight: 400;
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    color: var(--bodyTextColor);
  }
  #services-448 .cs-link {
    display: inline-block;
    background-color: var(--primaryLight);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2em;
    padding: 1rem 1.75rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3);
    min-height: 44px;
    min-width: 44px;
  }
  #services-448 .cs-link:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 121, 191, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  #services-448 .cs-link:focus {
    outline: 3px solid var(--primary-alt);
    outline-offset: 3px;
  }
  #services-448 .cs-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-448 .cs-container {
    max-width: 80rem;
  }
  #services-448 .cs-card-group {
    flex-direction: row;
  }
  #services-448 .cs-item {
    width: 47%;
  }
  #services-448 .cs-link {
    padding: 0.875rem 1.5rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-448 .cs-card-group {
    flex-wrap: nowrap;
  }
  #services-448 .cs-item {
    width: 100%;
    /* 144px - 274px */
    padding-top: clamp(9rem, 17.5vw, 17.125rem);
  }
  #services-448 .cs-picture {
    /* 224px - 428px */
    height: clamp(14rem, 28vw, 26.75rem);
  }
}
/* ===========================================
   Managed vs DIY (component styles)
   =========================================== */
#managed-vs-diy {
  padding: var(--sectionPadding);
  position: relative;
  z-index: 1;
  text-align: center;
}
#managed-vs-diy .mv-container {
  max-width: clamp(64rem, 92vw, 80rem);
  margin: 0 auto;
}
#managed-vs-diy .mv-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
#managed-vs-diy .mv-head .cs-title {
  max-width: 28ch;
  margin-inline: auto;
}
#managed-vs-diy .mv-explanation {
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 23, 31, 0.1);
}
#managed-vs-diy .mv-explanation p {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.6;
  color: var(--bodyTextColor);
  margin: 0;
  opacity: 0.8;
}
#managed-vs-diy .mv-explanation p strong {
  color: var(--headerColor);
  font-weight: 700;
}
#managed-vs-diy .mv-explanation p em {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
}
#managed-vs-diy .mv-cost-breakdown {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48rem) {
  #managed-vs-diy .mv-cost-breakdown {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
#managed-vs-diy .mv-cost-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 23, 31, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: left;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.5;
}
#managed-vs-diy .mv-cost-item strong {
  color: var(--headerColor);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
#managed-vs-diy .mv-cost-item .mv-total-cost {
  font-weight: 800;
  font-size: 1.1em;
  color: #dc2626; /* red-600 */
}
#managed-vs-diy .mv-cost-item .mv-total-cost.managed {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#managed-vs-diy .mv-cost-item {
  /* First item (DIY) gets a subtle red tint */
}
#managed-vs-diy .mv-cost-item:first-child {
  border-color: rgba(220, 38, 38, 0.2);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(255, 255, 255, 0.8));
}
#managed-vs-diy .mv-cost-item {
  /* Second item (Managed) gets a subtle blue tint */
}
#managed-vs-diy .mv-cost-item:last-child {
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), rgba(255, 255, 255, 0.8));
}
#managed-vs-diy {
  /* Grid */
}
#managed-vs-diy .mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  justify-items: center;
}
#managed-vs-diy {
  /* Cards */
}
#managed-vs-diy .mv-card {
  background: #fff;
  border: 1px solid rgba(20, 23, 31, 0.08);
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
  max-width: 400px;
  width: 100%;
}
#managed-vs-diy .mv-card.mv-in {
  transform: translateY(0);
  opacity: 1;
}
#managed-vs-diy .mv-card .mv-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}
#managed-vs-diy .mv-card .mv-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
#managed-vs-diy .mv-card .mv-card-title {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.25;
  margin: 0;
  color: var(--headerColor);
  font-weight: 800;
  text-align: center;
}
#managed-vs-diy .mv-card .mv-subtitle {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  margin: 0.5rem 0 0 0;
  font-weight: 700;
  text-align: center;
  color: var(--primaryLight);
  background: linear-gradient(135deg, var(--primaryLight), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 3px 6px rgba(25, 121, 191, 0.3);
  letter-spacing: 0.02em;
}
#managed-vs-diy .mv-card .mv-subtitle .mv-emoji {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  margin-right: 0.5rem;
  font-size: 1.1em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}
#managed-vs-diy .mv-card .mv-subtitle.boring {
  color: #6b7280;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: normal;
}
#managed-vs-diy .mv-card .mv-subtitle.boring .mv-emoji {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  margin-right: 0.5rem;
  font-size: 1.1em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}
#managed-vs-diy .mv-card .mv-price-line {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.4;
  margin: 0.75rem 0 0 0;
  font-weight: 600;
  text-align: center;
  color: var(--bodyTextColor);
  opacity: 0.9;
  letter-spacing: 0.01em;
  /* Make the managed pricing line more prominent */
}
.mv-card.is-managed #managed-vs-diy .mv-card .mv-price-line {
  color: var(--primary);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#managed-vs-diy .mv-card .mv-price-line {
  /* Make the DIY pricing line more muted */
}
.mv-card.is-diy #managed-vs-diy .mv-card .mv-price-line {
  color: #6b7280;
  font-weight: 500;
  opacity: 0.8;
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 23, 31, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1rem 0 0 0;
  text-align: left;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  line-height: 1.5;
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline strong {
  color: var(--headerColor);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline .mv-total-cost {
  font-weight: 800;
  font-size: 1.1em;
  color: #dc2626; /* red-600 */
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline .mv-total-cost.managed {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  /* Managed card styling */
}
.mv-card.is-managed #managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), rgba(255, 255, 255, 0.9));
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  /* DIY card styling */
}
.mv-card.is-diy #managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  border-color: rgba(220, 38, 38, 0.2);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(255, 255, 255, 0.9));
}
#managed-vs-diy .mv-card .mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
#managed-vs-diy .mv-card .mv-li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.5rem;
  color: var(--bodyTextColor);
  font-size: var(--bodyFontSize);
  line-height: 1.55;
  text-align: left;
}
#managed-vs-diy .mv-card .mv-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.375rem;
  background: var(--mv-yes);
  -webkit-mask: var(--mv-check) center/70% no-repeat;
  mask: var(--mv-check) center/70% no-repeat;
  opacity: 0.95;
}
#managed-vs-diy .mv-card .is-no .mv-icon {
  background: var(--mv-no);
  -webkit-mask: var(--mv-x) center/70% no-repeat;
  mask: var(--mv-x) center/70% no-repeat;
}
#managed-vs-diy {
  /* Visual emphasis per side */
}
#managed-vs-diy .mv-card.is-managed {
  border-color: color-mix(in srgb, var(--primary) 26%, #ffffff);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--primary) 18%, transparent);
  position: relative;
}
#managed-vs-diy .mv-card.is-managed::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.1;
}
#managed-vs-diy .mv-card.is-diy {
  border-color: rgba(20, 23, 31, 0.12);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.035) 0%, rgba(2, 6, 23, 0.02) 100%), #fff;
}
#managed-vs-diy {
  /* Badge + VS pill */
}
#managed-vs-diy .mv-badge {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--bodyTextColorWhite);
  background: var(--primary);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 30%, transparent);
}
#managed-vs-diy .mv-badge.alt {
  background: #64748b; /* slate */
  color: #fff;
}
#managed-vs-diy .mv-divider {
  display: grid;
  place-items: center;
}
#managed-vs-diy .mv-pill {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: radial-gradient(70% 70% at 30% 30%, color-mix(in srgb, var(--primary) 38%, transparent), transparent), #0b1020;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: scale(0.9);
  transition: transform 0.4s ease;
  position: relative;
}
#managed-vs-diy .mv-pill::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--primary), var(--primaryLight));
  border-radius: 999px;
  z-index: -1;
  opacity: 0.3;
}
#managed-vs-diy .mv-pop .mv-pill {
  transform: scale(1);
}
#managed-vs-diy {
  /* CTA */
}
#managed-vs-diy .mv-cta {
  text-align: center;
  margin-top: clamp(1rem, 3vw, 2rem);
}
#managed-vs-diy .mv-btn {
  --btnH: 3.125rem;
  display: inline-grid;
  place-items: center;
  height: var(--btnH);
  padding: 0 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
  color: var(--bodyTextColorWhite);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}
#managed-vs-diy .mv-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
#managed-vs-diy .mv-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.02);
  box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
}
#managed-vs-diy .mv-btn:hover::before {
  left: 100%;
}
#managed-vs-diy .mv-btn:active {
  transform: translateY(1px) scale(0.98);
}
#managed-vs-diy {
  /* Tablet & up */
}
@media (min-width: 48rem) {
  #managed-vs-diy .mv-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: stretch;
  }
  #managed-vs-diy .mv-card {
    max-width: none;
  }
}

/* Dark theme */
body.dark-mode #managed-vs-diy {
  background: linear-gradient(180deg, #0b1020 0%, #0a0f1a 100%);
}
body.dark-mode #managed-vs-diy .mv-explanation {
  border-top-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode #managed-vs-diy .mv-explanation p {
  color: #ffffff !important;
  opacity: 1 !important;
}
body.dark-mode #managed-vs-diy .mv-explanation p strong {
  color: #ffffff !important;
}
body.dark-mode #managed-vs-diy .mv-explanation p em {
  color: var(--primaryLight) !important;
  font-style: italic;
  font-weight: 600;
}
body.dark-mode #managed-vs-diy .mv-cost-item {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode #managed-vs-diy .mv-cost-item strong {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-cost-item {
  /* First item (DIY) gets a subtle red tint */
}
body.dark-mode #managed-vs-diy .mv-cost-item:first-child {
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(15, 23, 42, 0.8));
}
body.dark-mode #managed-vs-diy .mv-cost-item {
  /* Second item (Managed) gets a subtle blue tint */
}
body.dark-mode #managed-vs-diy .mv-cost-item:last-child {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), rgba(15, 23, 42, 0.8));
}
body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline strong {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  /* Managed card styling */
}
.mv-card.is-managed body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), rgba(15, 23, 42, 0.9));
}
body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  /* DIY card styling */
}
.mv-card.is-diy body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(15, 23, 42, 0.9));
}
body.dark-mode #managed-vs-diy .mv-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.5);
}
body.dark-mode #managed-vs-diy .mv-card .mv-card-title {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-subtitle {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-price-line {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-li {
  color: color-mix(in srgb, #ffffff 82%, transparent);
}
body.dark-mode #managed-vs-diy .mv-card .mv-cost-breakdown-inline strong {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card.is-managed {
  border-color: color-mix(in srgb, var(--primary) 35%, #0f172a);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 30%, transparent);
}
body.dark-mode #managed-vs-diy .mv-card.is-diy {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, rgba(2, 6, 23, 0.35) 100%), #0f172a;
  border-color: rgba(255, 255, 255, 0.07);
}

/* ============== portfolio-3cards ============== */
.p3c {
  padding: var(--sectionPadding);
}
.p3c .cs-content {
  text-align: center;
  width: 100%;
  max-width: 56.25rem;
  margin: auto;
  margin-bottom: 3rem;
}
.p3c .cs-topper {
  color: var(--primaryLight);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.p3c .cs-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2em;
  text-align: center !important;
  max-width: 43.75rem;
  margin: 0 auto 1rem auto;
  color: var(--headerColor);
}
.p3c .cs-text {
  font-size: 1.1rem;
  line-height: 1.5em;
  text-align: center !important;
  width: 100%;
  max-width: 40.625rem;
  margin: 0 auto;
  color: var(--bodyTextColor);
}
.p3c .p3c-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(1.75rem, 4vw, 3rem);
}
.p3c .p3c-row:not(:last-child) {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
@media (max-width: 900px) {
  .p3c .p3c-row {
    grid-template-columns: 1fr;
  }
}
.p3c .p3c-media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.p3c .p3c-media img {
  display: block;
  width: 100%;
  height: auto;
}
.p3c .p3c-media .p3c-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  user-select: none;
}
.p3c .p3c-copy .p3c-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--headerColor);
  margin: 0 0 0.5rem 0;
}
.p3c .p3c-copy .p3c-lede {
  margin: 0 0 1rem 0;
  color: var(--bodyTextColor);
  max-width: 48ch;
}
.p3c .p3c-copy .p3c-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.5rem 0 0 0;
}
.p3c .p3c-copy .p3c-meta {
  margin: 0.6rem 0 0 0;
  font-size: 0.9rem;
  color: color-mix(in oklab, var(--bodyTextColor) 80%, black 20%);
  opacity: 0.8;
}
.p3c .p3c-outline {
  background: transparent;
  color: var(--headerColor);
  border: 2px solid currentColor;
}
[data-theme=dark] .p3c .p3c-copy .p3c-meta, .dark .p3c .p3c-copy .p3c-meta {
  color: color-mix(in oklab, var(--bodyTextColorWhite) 70%, black 30%);
}
[data-theme=dark] .p3c .p3c-outline, .dark .p3c .p3c-outline {
  color: var(--bodyTextColorWhite);
  border-color: currentColor;
}

/* Unused components removed */
/* New templated components following add-component.sh structure - Commented out, files kept for potential future use */
/* SISS Components */
/* ============================================ */
/*              SISS Hero Carousel              */
/* ============================================ */
/* Mobile - 0px (Base Styles) */
@media only screen and (min-width: 0rem) {
  #hero-siss {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 450px;
    max-height: 100vh;
    overflow: hidden;
    background-color: var(--primary);
  }
}
/* Very Tall Devices - Aspect ratio > 2.0 (e.g., Galaxy Z Fold, tall phones) */
@media only screen and (min-width: 0rem) and (min-aspect-ratio: 1/2) and (max-width: 48rem) {
  #hero-siss {
    height: 65vh;
    min-height: 420px;
  }
  #hero-siss .hero-slide__content {
    padding: 1.25rem 0 4rem;
  }
}
/* Landscape Mobile - Wider than tall */
@media only screen and (min-width: 0rem) and (max-width: 48rem) and (orientation: landscape) {
  #hero-siss {
    height: 85vh;
    min-height: 500px;
  }
  #hero-siss .hero-slide__image img {
    object-fit: cover;
    object-position: center center;
  }
  #hero-siss .hero-slide__content {
    max-width: 600px;
  }
}
/* Mobile - 0px (Base Styles - continued) */
@media only screen and (min-width: 0rem) {
  #hero-siss .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #hero-siss .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  #hero-siss .hero-slide.active {
    opacity: 1;
    z-index: 2;
  }
  #hero-siss .hero-slide__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  #hero-siss .hero-slide__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
  }
  #hero-siss .hero-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  #hero-siss .hero-slide .cs-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  #hero-siss .hero-slide__content {
    max-width: 100%;
    color: var(--white);
    padding: 1.5rem 0 5rem;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  #hero-siss .hero-slide__title {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
    font-weight: 700 !important;
    line-height: 1.25em !important;
    color: var(--white) !important;
    margin: 0 0 1rem !important;
    margin-block: 0 1rem !important;
    text-align: left !important;
    font-family: var(--font-heading) !important;
    letter-spacing: -0.01em !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  #hero-siss .hero-slide__badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--white) !important;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700 !important;
    font-size: 0.8125rem !important;
    margin-bottom: 1rem !important;
    text-align: center;
    font-family: var(--font-body) !important;
    letter-spacing: 0.02em;
    line-height: 1.4em !important;
    align-self: flex-start;
    width: auto !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  #hero-siss .hero-slide__description {
    font-size: 0.875rem !important;
    line-height: 1.5em !important;
    color: var(--white) !important;
    margin: 0 0 0.875rem !important;
    opacity: 0.98;
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  #hero-siss .hero-slide__description:last-of-type {
    margin-bottom: 1.5rem !important;
  }
  #hero-siss .hero-slide__cta {
    display: inline-block;
    padding: 0.9375rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-body) !important;
    line-height: 1.4em !important;
    align-self: flex-start;
    width: auto !important;
    min-width: 140px;
    text-align: center;
  }
  #hero-siss .hero-slide__cta--primary {
    background-color: var(--white);
    color: var(--primary) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  }
  #hero-siss .hero-slide__cta--primary:hover, #hero-siss .hero-slide__cta--primary:active {
    background-color: var(--primary-light);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  #hero-siss .hero-slide__cta--primary:active {
    transform: translateY(0);
  }
  #hero-siss .hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  #hero-siss .hero-carousel__nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    stroke-width: 2.5;
    fill: none;
  }
  #hero-siss .hero-carousel__nav--prev {
    left: 0.75rem;
  }
  #hero-siss .hero-carousel__nav--next {
    right: 0.75rem;
  }
  #hero-siss .hero-carousel__nav:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.05);
  }
  #hero-siss .hero-carousel__nav:active {
    transform: translateY(-50%) scale(0.95);
    background: rgba(255, 255, 255, 0.4);
  }
  #hero-siss .hero-carousel__pagination {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 0.625rem;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 2rem;
  }
  #hero-siss .hero-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
  #hero-siss .hero-carousel__dot.active {
    background-color: var(--white);
    border-color: var(--white);
    width: 12px;
    height: 12px;
  }
  #hero-siss .hero-carousel__dot:hover, #hero-siss .hero-carousel__dot:active {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.6);
  }
}
/* Small Mobile - 320px to 375px (Very small screens) */
@media only screen and (min-width: 20rem) and (max-width: 23.4375rem) {
  #hero-siss {
    height: 70vh;
    min-height: 400px;
  }
  #hero-siss .hero-slide__content {
    padding: 1.25rem 0 4.5rem;
  }
  #hero-siss .hero-slide__title {
    font-size: clamp(1.375rem, 4.5vw, 1.75rem) !important;
    margin-bottom: 0.875rem !important;
  }
  #hero-siss .hero-slide__badge {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.875rem;
    margin-bottom: 0.875rem !important;
  }
  #hero-siss .hero-slide__description {
    font-size: 0.8125rem !important;
    margin-bottom: 0.75rem !important;
  }
  #hero-siss .hero-slide__description:last-of-type {
    margin-bottom: 1.25rem !important;
  }
  #hero-siss .hero-slide__cta {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem !important;
    min-width: 130px;
  }
  #hero-siss .hero-carousel__nav {
    width: 36px;
    height: 36px;
  }
  #hero-siss .hero-carousel__nav svg {
    width: 18px;
    height: 18px;
  }
  #hero-siss .hero-carousel__nav--prev {
    left: 0.5rem;
  }
  #hero-siss .hero-carousel__nav--next {
    right: 0.5rem;
  }
  #hero-siss .hero-carousel__pagination {
    bottom: 1.25rem;
    padding: 0.375rem 0.625rem;
  }
}
/* Medium Mobile - 375px to 480px (Standard mobile) */
@media only screen and (min-width: 23.4375rem) and (max-width: 30rem) {
  #hero-siss {
    height: 75vh;
    min-height: 480px;
  }
}
/* Large Mobile - 480px to 600px (Large phones, small tablets in portrait) */
@media only screen and (min-width: 30rem) and (max-width: 37.5rem) {
  #hero-siss {
    height: 80vh;
    min-height: 520px;
  }
  #hero-siss .hero-slide__content {
    padding: 1.75rem 0 4.75rem;
  }
  #hero-siss .hero-slide__title {
    font-size: clamp(1.625rem, 4.5vw, 2rem) !important;
  }
  #hero-siss .hero-slide__description {
    font-size: 0.9375rem !important;
  }
}
/* Extra Large Mobile / Small Tablet - 600px to 768px */
@media only screen and (min-width: 37.5rem) and (max-width: 48rem) {
  #hero-siss {
    height: 85vh;
    min-height: 550px;
  }
  #hero-siss .hero-slide__image img {
    object-fit: contain;
  }
  #hero-siss .hero-slide__content {
    max-width: 550px;
    padding: 2rem 0 4.5rem;
  }
  #hero-siss .hero-slide__title {
    font-size: clamp(1.875rem, 4.5vw, 2.25rem) !important;
  }
  #hero-siss .hero-slide__description {
    font-size: 0.96875rem !important;
  }
  #hero-siss .hero-carousel__nav {
    width: 44px;
    height: 44px;
  }
  #hero-siss .hero-carousel__nav svg {
    width: 22px;
    height: 22px;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-siss {
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
  }
  #hero-siss .hero-slide__image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
  }
  #hero-siss .hero-slide__image img {
    object-fit: cover;
    object-position: 25% center;
  }
  #hero-siss .hero-slide .cs-container {
    padding: 0 2rem;
  }
  #hero-siss .hero-slide__content {
    max-width: 600px;
    padding: 2rem 0 4rem;
  }
  #hero-siss .hero-slide__title {
    font-size: clamp(2rem, 4.5vw, 3rem) !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.4);
  }
  #hero-siss .hero-slide__badge {
    font-size: 0.9375rem !important;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.75rem !important;
  }
  #hero-siss .hero-slide__description {
    font-size: 1rem !important;
    margin-bottom: 1.125rem !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.4);
  }
  #hero-siss .hero-slide__description:last-of-type {
    margin-bottom: 2rem !important;
  }
  #hero-siss .hero-slide__cta {
    font-size: 1rem !important;
    padding: 1rem 2rem;
    min-width: 160px;
  }
  #hero-siss .hero-carousel__nav {
    width: 48px;
    height: 48px;
  }
  #hero-siss .hero-carousel__nav svg {
    width: 24px;
    height: 24px;
  }
  #hero-siss .hero-carousel__nav--prev {
    left: 1.5rem;
  }
  #hero-siss .hero-carousel__nav--next {
    right: 1.5rem;
  }
  #hero-siss .hero-carousel__pagination {
    bottom: 2rem;
    background: rgba(0, 0, 0, 0.25);
  }
  #hero-siss .hero-carousel__dot {
    width: 12px;
    height: 12px;
  }
  #hero-siss .hero-carousel__dot.active {
    width: 14px;
    height: 14px;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-siss {
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
  }
  #hero-siss .hero-slide__image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
  }
  #hero-siss .hero-slide__image img {
    object-fit: cover;
    object-position: center center;
  }
  #hero-siss .hero-slide .cs-container {
    padding: 0 2rem;
  }
  #hero-siss .hero-slide__content {
    max-width: 650px;
    padding: 2rem 0;
  }
  #hero-siss .hero-slide__title {
    font-size: clamp(2.25rem, 5vw, 3.25rem) !important;
    margin-bottom: 1.75rem !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #hero-siss .hero-slide__badge {
    font-size: 1rem !important;
    padding: 0.875rem 1.75rem;
    margin-bottom: 2rem !important;
  }
  #hero-siss .hero-slide__description {
    font-size: 1.0625rem !important;
    margin-bottom: 1.25rem !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #hero-siss .hero-slide__description:last-of-type {
    margin-bottom: 2.25rem !important;
  }
  #hero-siss .hero-slide__cta {
    font-size: 1.0625rem !important;
    padding: 1.125rem 2.25rem;
    min-width: 180px;
  }
  #hero-siss .hero-carousel__nav {
    width: 56px;
    height: 56px;
  }
  #hero-siss .hero-carousel__nav svg {
    width: 24px;
    height: 24px;
  }
  #hero-siss .hero-carousel__nav--prev {
    left: 2rem;
  }
  #hero-siss .hero-carousel__nav--next {
    right: 2rem;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-siss {
    max-height: 900px;
  }
  #hero-siss .hero-slide__image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.25) 100%);
  }
  #hero-siss .hero-slide__image img {
    object-fit: cover;
    object-position: center center;
  }
  #hero-siss .hero-slide__title {
    font-size: clamp(2.5rem, 5.5vw, 3.5rem) !important;
  }
  #hero-siss .hero-slide__content {
    max-width: 700px;
  }
}
/* ============================================ */
/*            SISS Services Carousel            */
/* ============================================ */
#services-siss {
  padding: 4rem 0;
  background-color: #ffffff;
}
#services-siss .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: visible !important;
}
#services-siss .cs-content {
  text-align: center;
  margin-bottom: 3rem;
}
#services-siss .cs-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0 auto 1rem;
  text-align: center !important;
  max-width: 100%;
}
#services-siss .cs-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 3rem;
  position: relative;
  width: 100%;
  height: 21px;
  overflow: visible;
}
#services-siss .cs-divider__svg {
  width: 100%;
  height: 21px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
#services-siss .services-carousel-wrapper {
  position: relative;
  margin-bottom: 2rem;
  overflow: visible !important;
}
#services-siss .services-carousel {
  display: flex;
  gap: 1.5rem;
  overflow: visible !important;
  position: relative;
  justify-content: center;
  align-items: stretch;
  padding: 0 3.5rem;
}
@media (max-width: 767px) {
  #services-siss .services-carousel {
    padding: 0 3rem;
    gap: 1rem;
  }
}
#services-siss .service-card {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: visible !important;
  position: relative;
  align-items: stretch;
}
#services-siss .service-card__image-wrapper {
  width: 260px;
  height: 260px;
  max-width: 260px;
  margin: 0 auto;
  margin-bottom: -50px !important;
  transform: translateY(25px) !important;
  position: relative;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: visible !important;
  z-index: 10;
}
#services-siss .service-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
#services-siss .service-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 50%;
}
#services-siss .service-card__content {
  background-color: var(--secondary);
  border-radius: 0.75rem;
  padding: 1.5rem 1.5rem 2rem;
  color: var(--white);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(52, 156, 157, 0.15);
  margin-top: 0 !important;
  padding-top: 8.125rem !important;
  min-height: 280px;
  position: relative;
  z-index: 1;
}
#services-siss .service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.3em;
}
#services-siss .service-card__description {
  font-size: 0.9375rem;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  flex: 1;
}
#services-siss .services-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary);
  border: 2px solid var(--primary);
  background-color: var(--white);
  padding: 0;
  box-shadow: 0 2px 6px rgba(26, 69, 75, 0.1);
}
#services-siss .services-carousel__nav svg {
  width: 24px;
  height: 24px;
}
#services-siss .services-carousel__nav--prev {
  left: 0;
}
@media (min-width: 48rem) {
  #services-siss .services-carousel__nav--prev {
    left: 0.5rem;
  }
}
#services-siss .services-carousel__nav--next {
  right: 0;
}
@media (min-width: 48rem) {
  #services-siss .services-carousel__nav--next {
    right: 0.5rem;
  }
}
#services-siss .services-carousel__nav:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 3px 10px rgba(26, 69, 75, 0.2);
}
#services-siss .services-carousel__nav:active {
  transform: translateY(-50%) scale(0.95);
}
#services-siss .services-carousel__nav:disabled, #services-siss .services-carousel__nav[style*="pointer-events: none"] {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-siss {
    padding: 5rem 0;
  }
  #services-siss .cs-title {
    font-size: 3rem;
  }
  #services-siss .services-carousel {
    gap: 1.5rem;
    padding: 0 3.5rem;
  }
  #services-siss .service-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    display: flex;
  }
  #services-siss .service-card__image-wrapper {
    width: 280px;
    height: 280px;
    max-width: 280px;
    margin-bottom: -60px !important;
    transform: translateY(30px) !important;
  }
  #services-siss .service-card__content {
    padding: 1.75rem 1.75rem 2rem !important;
    margin-top: 0 !important;
    padding-top: 8.75rem !important;
    min-height: 300px;
  }
  #services-siss .service-card__title {
    font-size: 1.375rem;
  }
  #services-siss .service-card__description {
    font-size: 0.9375rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-siss {
    padding: 6rem 0;
  }
  #services-siss .services-carousel {
    gap: 1.5rem;
    padding: 0 4rem;
  }
  #services-siss .service-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    display: flex;
  }
  #services-siss .service-card__image-wrapper {
    width: 280px;
    height: 280px;
    max-width: 280px;
    margin-bottom: -70px !important;
    transform: translateY(35px) !important;
  }
  #services-siss .service-card__content {
    padding: 1.75rem 1.75rem 2.25rem !important;
    margin-top: 0 !important;
    padding-top: 8.75rem !important;
    min-height: 320px;
  }
  #services-siss .service-card__title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  #services-siss .service-card__description {
    font-size: 0.9375rem;
  }
}
/* ============================================ */
/*            Why Choose SISS Stats            */
/* ============================================ */
#stats-siss {
  padding: 4rem 0;
  background-color: #ffffff;
}
#stats-siss .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
#stats-siss .cs-content {
  text-align: center;
  margin-bottom: 3rem;
}
#stats-siss .cs-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f403c;
  margin: 0 auto 1rem;
  text-align: center !important;
  max-width: 100%;
}
#stats-siss .cs-text {
  font-size: 1.125rem;
  line-height: 1.6em;
  color: #0f403c;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#stats-siss .stats-container {
  background-color: #0f403c;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 2rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}
#stats-siss .stats-timeline {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#stats-siss .stats-timeline__line {
  position: absolute;
  top: 50%;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: #ffffff;
  transform: translateY(-50%);
  z-index: 1;
}
#stats-siss .stats-timeline__dot {
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 2;
  flex-shrink: 0;
}
#stats-siss .stats-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
#stats-siss .stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
#stats-siss .stat-item__icon {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  position: relative;
}
#stats-siss .stat-item__icon img {
  width: 64px;
  height: 64px;
  display: block;
  filter: brightness(0) invert(1);
}
#stats-siss .stat-item__number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2em;
  color: #ffffff;
  margin: 0;
}
#stats-siss .stat-item__label {
  font-size: 1rem;
  line-height: 1.4em;
  color: #ffffff;
  margin: 0;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #stats-siss {
    padding: 5rem 0;
  }
  #stats-siss .cs-title {
    font-size: 3rem;
  }
  #stats-siss .stats-container {
    padding: 2.5rem 3rem 4rem;
  }
  #stats-siss .stats-timeline {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
  #stats-siss .stats-items {
    gap: 1.5rem;
  }
  #stats-siss .stat-item__icon {
    width: 96px;
    height: 96px;
  }
  #stats-siss .stat-item__icon img {
    width: 80px;
    height: 80px;
  }
  #stats-siss .stat-item__number {
    font-size: 3rem;
  }
  #stats-siss .stat-item__label {
    font-size: 1.125rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #stats-siss {
    padding: 6rem 0;
  }
  #stats-siss .stats-container {
    padding: 3rem 4rem 4.5rem;
  }
  #stats-siss .stats-timeline {
    margin-bottom: 3.5rem;
    padding: 0 3rem;
  }
  #stats-siss .stats-items {
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: space-around;
  }
  #stats-siss .stat-item {
    flex: 0 1 auto;
  }
  #stats-siss .stat-item__icon {
    width: 112px;
    height: 112px;
  }
  #stats-siss .stat-item__icon img {
    width: 96px;
    height: 96px;
  }
  #stats-siss .stat-item__number {
    font-size: 3.5rem;
  }
}
/* ============================================ */
/*            Client Logos Section             */
/* ============================================ */
#client-logos {
  padding: 4rem 0;
  background-color: #ffffff;
}
#client-logos .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
#client-logos .logos-section {
  margin-bottom: 4rem;
}
#client-logos .logos-section:last-child {
  margin-bottom: 0;
}
#client-logos .logos-section__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f403c;
  text-align: center !important;
  margin: 0 auto 1rem;
  max-width: 100%;
}
#client-logos .logos-section__divider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 2rem;
  width: 100%;
  height: 21px;
  overflow: visible;
}
#client-logos .logos-section__divider-svg {
  width: 100%;
  height: 21px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  preserveAspectRatio: xMidYMid meet;
}
#client-logos .logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  width: 100%;
}
#client-logos .logo-item {
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}
#client-logos .logo-item:hover {
  transform: scale(1.05);
}
#client-logos .logo-item__image {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
#client-logos .logo-item:hover #client-logos .logo-item__image {
  opacity: 0.8;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #client-logos {
    padding: 5rem 0;
  }
  #client-logos .logos-section__title {
    font-size: 2.5rem;
  }
  #client-logos .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  #client-logos .logo-item {
    max-width: 250px;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #client-logos {
    padding: 6rem 0;
  }
  #client-logos .logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
  }
  #client-logos .logo-item {
    max-width: 300px;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #client-logos .logos-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
/* ============================================ */
/*            SISS Team Section                */
/* ============================================ */
#team-siss {
  padding: 4rem 0;
  background-color: #ffffff;
}
#team-siss .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
#team-siss .cs-content {
  text-align: center;
  margin-bottom: 3rem;
}
#team-siss .cs-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f403c;
  margin: 0 auto 1rem;
  text-align: center !important;
  max-width: 100%;
}
#team-siss .cs-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 3rem;
  position: relative;
  width: 100%;
  height: 21px;
  overflow: visible;
}
#team-siss .cs-divider__svg {
  width: 100%;
  height: 21px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
#team-siss .team-content {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}
#team-siss .team-content__title {
  font-size: 2rem;
  font-weight: 900;
  color: #0f403c;
  margin: 0 0 1.5rem;
  line-height: 1.2em;
}
#team-siss .team-content__paragraph {
  font-size: 1.125rem;
  line-height: 1.6em;
  color: #333333;
  margin: 0 0 1.5rem;
}
#team-siss .team-content__paragraph:last-of-type {
  margin-bottom: 0;
}
#team-siss .team-carousel-wrapper {
  position: relative;
  margin-bottom: 2rem;
  overflow: visible !important;
}
#team-siss .team-carousel {
  display: flex;
  gap: 1.5rem;
  overflow: visible !important;
  position: relative;
  justify-content: center;
  align-items: stretch;
  padding: 0 3.5rem;
}
@media (max-width: 767px) {
  #team-siss .team-carousel {
    padding: 0 3rem;
    gap: 1rem;
  }
}
#team-siss .team-card {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: visible !important;
  position: relative;
  align-items: stretch;
}
#team-siss .team-card__image-wrapper {
  width: 260px;
  height: 260px;
  max-width: 260px;
  margin: 0 auto;
  margin-bottom: -50px !important;
  transform: translateY(25px) !important;
  position: relative;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: visible !important;
  z-index: 10;
}
#team-siss .team-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
#team-siss .team-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 50%;
}
#team-siss .team-card__content {
  background-color: #0f403c;
  border-radius: 0.75rem;
  padding: 1.5rem 1.5rem 2rem;
  color: var(--white);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(15, 64, 60, 0.15);
  margin-top: 0 !important;
  padding-top: 8.125rem !important;
  min-height: 280px;
  position: relative;
  z-index: 1;
}
#team-siss .team-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3em;
}
#team-siss .team-card__role {
  font-size: 0.875rem;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}
#team-siss .team-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0f403c;
  border: 2px solid #0f403c;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  padding: 0;
  z-index: 20;
}
#team-siss .team-carousel__nav:hover {
  background-color: #ff6b35;
  border-color: #ff6b35;
}
#team-siss .team-carousel__nav--prev {
  left: 0;
}
#team-siss .team-carousel__nav--next {
  right: 0;
}
#team-siss .team-carousel__nav svg {
  width: 24px;
  height: 24px;
}
#team-siss .team-carousel__pagination {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
#team-siss .team-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #0f403c;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
#team-siss .team-carousel__dot.active {
  background-color: #0f403c;
  border-color: #0f403c;
}
#team-siss .team-carousel__dot:hover {
  background-color: #0f403c;
  opacity: 0.7;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #team-siss {
    padding: 5rem 0;
  }
  #team-siss .cs-title {
    font-size: 3rem;
  }
  #team-siss .team-content {
    margin-bottom: 5rem;
  }
  #team-siss .team-content__title {
    font-size: 2.5rem;
  }
  #team-siss .team-carousel {
    gap: 1.5rem;
    padding: 0 4rem;
  }
  #team-siss .team-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    display: flex;
  }
  #team-siss .team-card__image-wrapper {
    width: 280px;
    height: 280px;
    max-width: 280px;
    margin-bottom: -60px !important;
    transform: translateY(30px) !important;
  }
  #team-siss .team-card__content {
    padding: 1.75rem 1.75rem 2rem !important;
    padding-top: 9rem !important;
    min-height: 300px;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #team-siss {
    padding: 6rem 0;
  }
  #team-siss .team-content__title {
    font-size: 3rem;
  }
  #team-siss .team-carousel {
    gap: 1.5rem;
    padding: 0 4rem;
  }
  #team-siss .team-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    display: flex;
  }
  #team-siss .team-card__image-wrapper {
    width: 280px;
    height: 280px;
    max-width: 280px;
    margin-bottom: -70px !important;
    transform: translateY(35px) !important;
  }
  #team-siss .team-card__content {
    padding: 1.75rem 1.75rem 2.25rem !important;
    padding-top: 9rem !important;
    min-height: 320px;
  }
  #team-siss .team-card__name {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  #team-siss .team-card__role {
    font-size: 0.9375rem;
  }
}
/* ============================================ */
/*            Work With Us Section             */
/* ============================================ */
#work-with-us {
  padding: 4rem 0;
  background-color: #f5f5f5;
}
#work-with-us .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
#work-with-us .job-positions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
#work-with-us .job-card {
  background-color: #0f403c;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
#work-with-us .job-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
#work-with-us .work-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}
#work-with-us .work-content__image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
#work-with-us .work-content__image img {
  width: 100%;
  height: auto;
  display: block;
}
#work-with-us .work-content__text {
  background-color: #ff6b35;
  border-radius: 1rem;
  padding: 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
#work-with-us .work-content__title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 1rem;
}
#work-with-us .work-content__description {
  font-size: 1.125rem;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}
#work-with-us .resume-upload {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
#work-with-us .resume-upload__content {
  background-color: #0f403c;
  border-radius: 1rem;
  padding: 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
#work-with-us .resume-upload__title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 1rem;
}
#work-with-us .resume-upload__description {
  font-size: 1.125rem;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}
#work-with-us .resume-upload__cta {
  display: inline-block;
  background: var(--primary-light, #e8a24c);
  color: var(--white, #ffffff);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 162, 76, 0.4), 0 2px 8px rgba(232, 162, 76, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}
#work-with-us .resume-upload__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
#work-with-us .resume-upload__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(232, 162, 76, 0.5), 0 4px 12px rgba(232, 162, 76, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 20px rgba(232, 162, 76, 0.6);
  background: linear-gradient(135deg, #f5b85d 0%, var(--primary-light, #e8a24c) 50%, #f5b85d 100%);
  color: var(--white, #ffffff);
}
#work-with-us .resume-upload__cta:hover::before {
  left: 100%;
}
#work-with-us .resume-upload__cta:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 2px 8px rgba(232, 162, 76, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
#work-with-us .resume-upload__image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
#work-with-us .resume-upload__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #work-with-us {
    padding: 5rem 0;
  }
  #work-with-us .job-positions {
    flex-direction: row;
    justify-content: center;
  }
  #work-with-us .job-card {
    flex: 1;
    max-width: 300px;
  }
  #work-with-us .work-content {
    flex-direction: row;
    align-items: center;
  }
  #work-with-us .work-content__image {
    flex: 1;
  }
  #work-with-us .work-content__text {
    flex: 1;
  }
  #work-with-us .resume-upload {
    flex-direction: row;
    align-items: center;
  }
  #work-with-us .resume-upload__content {
    flex: 1;
  }
  #work-with-us .resume-upload__image {
    flex: 1;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #work-with-us {
    padding: 6rem 0;
  }
  #work-with-us .work-content__title {
    font-size: 2.5rem;
  }
  #work-with-us .resume-upload__title {
    font-size: 2.5rem;
  }
}
/* ============================================ */
/*            About SISS Section               */
/* ============================================ */
#about-siss {
  padding: 4rem 0;
  background-color: #ffffff;
}
#about-siss .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
#about-siss .about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
#about-siss .about-content__text {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#about-siss .about-content__title {
  font-size: 2rem;
  font-weight: 900;
  color: #0f403c;
  margin: 0 0 1.5rem;
  line-height: 1.2em;
}
#about-siss .about-content__paragraph {
  font-size: 1.125rem;
  line-height: 1.6em;
  color: #333333;
  margin: 0 0 1.5rem;
}
#about-siss .about-content__paragraph:last-of-type {
  margin-bottom: 2rem;
}
#about-siss .about-content__cta {
  display: inline-block;
  background: var(--primary-light, #e8a24c);
  color: var(--white, #ffffff);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 162, 76, 0.4), 0 2px 8px rgba(232, 162, 76, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}
#about-siss .about-content__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
#about-siss .about-content__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(232, 162, 76, 0.5), 0 4px 12px rgba(232, 162, 76, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 20px rgba(232, 162, 76, 0.6);
  background: linear-gradient(135deg, #f5b85d 0%, var(--primary-light, #e8a24c) 50%, #f5b85d 100%);
  color: var(--white, #ffffff);
}
#about-siss .about-content__cta:hover::before {
  left: 100%;
}
#about-siss .about-content__cta:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 2px 8px rgba(232, 162, 76, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
#about-siss .about-content__image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
#about-siss .about-content__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #about-siss {
    padding: 5rem 0;
  }
  #about-siss .about-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  #about-siss .about-content__text {
    flex: 1;
  }
  #about-siss .about-content__image {
    flex: 1;
  }
  #about-siss .about-content__title {
    font-size: 2.5rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #about-siss {
    padding: 6rem 0;
  }
  #about-siss .about-content__title {
    font-size: 3rem;
  }
}
/* ============================================ */
/*            SISS Contact Form                */
/* ============================================ */
#contact-form-siss {
  padding: 4rem 0;
  background-color: var(--primary);
}
#contact-form-siss .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
#contact-form-siss .contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
#contact-form-siss .contact-wrapper__image {
  width: 100%;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
#contact-form-siss .contact-wrapper__image img {
  width: 100%;
  height: auto;
  display: block;
}
#contact-form-siss .contact-wrapper__image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 69, 75, 0.95), transparent);
  padding: 2rem;
  text-align: center;
}
#contact-form-siss .contact-wrapper__name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
#contact-form-siss .contact-wrapper__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  align-items: stretch;
}
#contact-form-siss .contact-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-height: 100%;
}
#contact-form-siss .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
#contact-form-siss .contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
}
#contact-form-siss .contact-card__icon svg {
  width: 28px;
  height: 28px;
}
#contact-form-siss .contact-card__icon--phone {
  background-color: var(--primary-light);
}
#contact-form-siss .contact-card__icon--whatsapp {
  background-color: var(--secondary);
}
#contact-form-siss .contact-card__icon--email {
  background-color: var(--primary);
}
#contact-form-siss .contact-card__icon--sms {
  background-color: var(--primary-alt);
}
#contact-form-siss .contact-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
#contact-form-siss .contact-card__description {
  font-size: 0.8125rem;
  color: #666666;
  margin: 0 0 auto;
  line-height: 1.5;
  flex-grow: 1;
}
#contact-form-siss .contact-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 180px;
  margin-top: 1.5rem;
  white-space: nowrap;
}
#contact-form-siss .contact-card__button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
#contact-form-siss .contact-card__button span {
  flex-shrink: 0;
}
#contact-form-siss .contact-card__button--phone {
  background-color: var(--primary-light);
}
#contact-form-siss .contact-card__button--phone:hover {
  background-color: var(--primary-light);
  opacity: 0.9;
  transform: scale(1.02);
}
#contact-form-siss .contact-card__button--whatsapp {
  background-color: var(--secondary);
}
#contact-form-siss .contact-card__button--whatsapp:hover {
  background-color: var(--secondary-light);
  transform: scale(1.02);
}
#contact-form-siss .contact-card__button--email {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
#contact-form-siss .contact-card__button--email:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.02);
}
#contact-form-siss .contact-card__button--sms {
  background-color: var(--white);
  color: var(--primary-alt);
  border: 2px solid var(--primary-alt);
}
#contact-form-siss .contact-card__button--sms:hover {
  background-color: var(--primary-alt);
  color: var(--white);
  transform: scale(1.02);
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-form-siss {
    padding: 5rem 0;
  }
  #contact-form-siss .contact-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
  #contact-form-siss .contact-wrapper__image {
    flex: 1;
  }
  #contact-form-siss .contact-wrapper__cards {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  #contact-form-siss .contact-card {
    padding: 2rem 1.75rem;
  }
  #contact-form-siss .contact-card__button {
    max-width: 160px;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-form-siss {
    padding: 6rem 0;
  }
  #contact-form-siss .contact-wrapper {
    gap: 3rem;
  }
  #contact-form-siss .contact-wrapper__cards {
    gap: 1.25rem;
  }
  #contact-form-siss .contact-card {
    padding: 2.25rem 2rem;
  }
  #contact-form-siss .contact-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }
  #contact-form-siss .contact-card__icon svg {
    width: 32px;
    height: 32px;
  }
  #contact-form-siss .contact-card__title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  #contact-form-siss .contact-card__description {
    font-size: 0.875rem;
  }
  #contact-form-siss .contact-card__button {
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    max-width: 180px;
  }
}

/*# sourceMappingURL=root.css.map */
