/* Google Fonts are now loaded via preload in HTML for better performance */

/* ************COMMON************ */

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

.logo img {
  min-width: 300px;
  height: auto;
  max-height: 3.75rem;
}

.header__logo img {
  min-width: 300px;
  max-height: 3.75rem;
}

.footer__logo img {
  min-width: 250px;
  max-height: 3.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
  line-height: 1.5;
}

h1 {
  font-size: 2.5rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
}

/* Ensure h1 tags have consistent font sizes within semantic containers */
article h1,
aside h1,
nav h1,
section h1 {
  font-size: 2.5rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
}

/* Responsive adjustments for h1 tags */
@media (max-width: 768px) {
  h1,
  article h1,
  aside h1,
  nav h1,
  section h1 {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  h1,
  article h1,
  aside h1,
  nav h1,
  section h1 {
    font-size: 1.75rem !important;
  }
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  font-size: 3.5rem;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  height: 60px;
}

.header__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 0;
}

.header__logo img {
  min-width: 200px;
  max-height: 3.75rem;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1rem;
}

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

.menu__list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__link {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  position: relative;
  color: #1a365d;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.menu__link:hover {
  background-color: rgba(26, 54, 93, 0.1);
  color: #1a365d;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
  padding-right: 1rem;
  margin-right: 1rem;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #1a365d;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  color: #1a365d;
  margin-top: 0.5rem;
}

/* ****************PAGES**************** */
.page {
  padding-top: 60px;
}

/* *****************HOME**************** */

.main {
  background: url("../images/Home/Home-Hero-Mountain.webp") center / cover no-repeat;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-position: center;
  background-size: cover;
  transform: scale(1.2);
  z-index: -1;
}

.main__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.main__content {
  flex: 1;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 40px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.main__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 2rem !important;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: white;
}

.main__caption {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: left;
  color: white;
}

.main__image {
  flex: 1;
  max-width: 500px;
  min-width: 400px;
}

.main__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.main__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  letter-spacing: 0.02em;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #2d7d46;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.outro_home {
  background: url("../images/Home/CTA.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  position: relative;
  background: none;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.main_about .main__container_pages {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 40px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.main_about .main__title {
  font-size: 2rem;
  color: white;
  margin-bottom: -2rem;
}

.main_about .main__text {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0;
}

.about__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main_about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.main__container_pages {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
  margin: 0 auto;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.about__text a {
  color: white;
  text-decoration: underline;
}

.about__button {
  font-weight: 600;
  display: block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  margin-top: 2rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.outro_about {
  background: url("../images/About/CTA.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../images/Services/Services-Hero.jpg") center / cover no-repeat;
}

.services {
  background-color: #ffffff;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5rem;
  font-size: 2rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
}

.item-services__image {
  margin-bottom: 2rem;
  width: 360px;
  height: 421px;
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-services__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.item-services__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.item-services__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.services__button {
  font-weight: 600;
  display: block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  margin: 2rem auto 0;
  text-align: center;
  width: fit-content;
}

.outro_services {
  background: url("../images/Services/CTA.jpg") center / cover no-repeat;
}

/* ************FOUNDER**************** */
body .page__founder.founder {
  width: 100% !important;
  background-color: #fff !important;
  padding: 8.75rem 0 !important;
}

body .page__founder.founder .founder__container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  flex-direction: column !important;
  max-width: 74.624rem !important;
  margin: 0 auto !important;
}

body .page__founder.founder .founder__caption {
  margin-bottom: 2rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 1.5rem !important;
  color: #303a4d !important;
}

body .page__founder.founder .founder__container p {
  max-width: 40.75rem !important;
  margin: 0 auto !important;
  line-height: 1.5 !important;
  color: #303a4d !important;
  font-size: 1.125rem !important;
}

body .page__founder.founder .founder__item {
  margin-top: 2rem !important;
}

body .page__founder.founder .founder__item img {
  width: 200px !important;
  height: 200px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  margin: 0 auto !important;
  display: block !important;
}

body .page__founder.founder .item-founder__title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  margin: 1rem 0 0.25rem !important;
  color: #303a4d !important;
  font-size: 1.25rem !important;
}

body .page__founder.founder .item-founder__caption {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.938rem !important;
  color: #303a4d !important;
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
}

.footer__container {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__policy {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  letter-spacing: 0.02em;
  justify-self: start;
  color: #1a365d;
}

.footer__logo {
  justify-self: center;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
  color: #1a365d;
}

.footer__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.footer__policy,
.footer__terms,
.footer__disclaimer {
  color: #1a365d;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: normal;
  position: relative;
}

.footer__policy:hover,
.footer__terms:hover,
.footer__disclaimer:hover {
  color: #2c5282;
}

.footer__policy:hover::after,
.footer__terms:hover::after,
.footer__disclaimer:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2c5282;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.footer__policy::after,
.footer__terms::after,
.footer__disclaimer::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2c5282;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 100px;
}

.main_pages {
  min-height: 676px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page {
  background-color: #2c5282;
}

.services-page__container {
  padding-top: 8.75rem;
  padding-bottom: 4rem;
}

.services-page__item {
  margin-bottom: 66px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 66px;
  margin-bottom: 66px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
  font-size: 2rem;
  color: white;
  margin-top: 0;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: white;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__text a {
  color: white;
  text-decoration: underline;
}

.services-page__text ul {
  list-style-type: disc;
  margin: 1rem 0;
  padding-left: 2rem;
  color: white;
}

.services-page__text li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: white;
  position: relative;
  padding-left: 1.5rem;
}

.services-page__text li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: white;
}

.services-page__text li:last-child {
  margin-bottom: 0;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-page__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.services-page__button {
  font-weight: 600;
  display: block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  margin-top: 2rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.services-page__column_centered {
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-page__content_centered {
  max-width: 600px;
  margin: 0 auto;
}

.services-page__content_centered .services-page__text {
  margin-left: auto;
  margin-right: auto;
}

.services-page__content_centered .services-page__image {
  margin: 1.5rem auto;
  text-align: center;
  max-width: 150px;
}

.services-page__content_centered .services-page__image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../images/Contact/Contact-Hero.jpg") center / cover no-repeat;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 48px;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f3f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  margin: 0 2px;
}

.connect-contant__type {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.main_pricing {
  background: url("../images/Home/Home-Hero.jpg") center / cover no-repeat;
}

.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.pricing__row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.pricing__column {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  display: flex;
}

.pricing__item {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.pricing__item_popular {
  transform: none;
  z-index: 1;
}

.pricing__popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #303a4d;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

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

.pricing__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing__price {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #303a4d;
}

.pricing__price span {
  font-size: 16px;
  color: #666;
}

.pricing__features {
  flex-grow: 1;
  margin-bottom: 40px;
  min-height: 300px;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing__feature {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid #e1e4eb;
  position: relative;
  padding-left: 24px;
}

.pricing__feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #303a4d;
}

.pricing__button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 16px;
  background: #303a4d;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s;
}

.pricing__button:hover {
  background: #1a2233;
}

.outro_pricing {
  background: url("../images/Home/CTA.jpg") center / cover no-repeat;
}

@media (max-width: 1200px) {
  .main__container {
    flex-direction: column;
    gap: 2rem;
  }

  .main__content {
    max-width: 100%;
    order: 1;
  }

  .main__image {
    max-width: 500px;
    min-width: 400px;
    width: 100%;
    order: 2;
  }
}

/* ****************TEAM PAGE************** */
.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.faqs__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.faqs__section-title:first-child {
  margin-top: 0;
}

.spollers-faq__item {
  margin-bottom: 1rem;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 2px solid #e1e4eb;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.spollers-faq__button span {
  padding: 32px 40px;
  font-weight: 600;
  text-align: left;
  flex: 1;
}

.spollers-faq__button img {
  position: absolute;
  right: 34.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translateY(-50%) rotate(180deg);
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
  transition: max-height 0.3s ease-out;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

.spollers-faq__inner p {
  margin-bottom: 1.5rem;
}

.spollers-faq__inner p:last-child {
  margin-bottom: 0;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .header__container {
    padding: 0.5rem 1rem;
  }

  .logo img {
    max-width: 200px;
  }

  .menu__body {
    display: none;
  }

  .menu-open .menu__body {
    display: block;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
    padding-right: 1rem;
    margin-right: 1rem;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 1px);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 1px);
    transform: rotate(45deg);
  }

  .menu__list {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 100px 30px 30px 30px;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }

  .menu-open .menu__list {
    display: flex;
    flex-direction: column;
    left: 0;
  }

  .menu__item {
    margin-bottom: 20px;
  }

  .menu__link {
    font-size: 24px;
  }

  .services__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .icon-menu {
    display: none;
  }

  .menu__body {
    display: block;
  }

  .menu__list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 0;
    width: 100%;
  }
  
  .header__logo {
    margin-left: 1rem;
  }
  
  .header__logo img {
    min-width: 180px;
  }

  .main__title {
    font-size: 1.75rem !important;
  }
  
  .main__caption {
    font-size: 1.1rem;
  }

  .services__row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services__item {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .item-services__image {
    width: 100%;
    height: auto;
    max-width: 360px;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
  }

  .item-services__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .item-services__text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .item-services__title {
    text-align: center;
    margin: 0 auto 0.75rem auto;
  }

  .page__main.main .main__container {
    padding-top: 50px;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .main__container {
    padding-top: 2rem;
    margin-top: 0;
  }

  .main__container_pages {
    padding-top: 2rem;
    margin-top: 0;
  }

  .page__main.main .main__container {
    padding-top: 2rem;
  }

  .main_pages .main__container {
    padding-top: 2rem;
    margin-top: 0;
  }

  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: #fff;
    border-bottom: 1px solid #000;
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }

  .menu__link {
    font-size: 2rem;
  }

  .actions-header__button {
    padding: 0.75rem;
  }

  .main__title {
    font-size: 1.5rem !important;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }

  .main__title {
    font-size: 1.5rem !important;
  }
  
  .main__caption {
    font-size: 1rem;
  }
  
  .main__container {
    padding-top: 12.5rem;
  }

  .services-page__img {
    max-width: 100%;
    height: auto;
  }
  
  .services-page__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

/* ****************PERFORMANCE PAGE**************** */
.main_performance {
  background: url("../images/Performance/Performance-Hero.jpg") center / cover no-repeat;
}

.performance-page {
  background-color: #2c5282;
}

.performance-page__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.performance-page__item {
  margin-bottom: 132px;
}

.performance-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.performance-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.performance-page__title {
  margin-bottom: 24px;
  font-size: 2rem;
  color: white;
}

.performance-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: white;
}

.performance-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.performance-page__img {
  max-width: 552px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.performance-page__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.performance-page__button {
  font-weight: 600;
  display: block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  margin-top: 2rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.outro_performance {
  background: url("../images/Performance/Performance-CTA.jpg") center / cover no-repeat;
}

@media (max-width: 992px) {
  .performance-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .performance-page__title {
    font-size: 29px;
  }
}

@media (max-width: 47.999rem) {
  .performance-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }

  .performance-page__img {
    max-width: 100%;
    height: auto;
  }
  
  .performance-page__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.disclaimer {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.disclaimer__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.disclaimer__title {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer__content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.disclaimer__content h2 {
  color: #1a365d;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.disclaimer__content h2:first-child {
  margin-top: 0;
}

.disclaimer__content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclaimer__content ul,
.privacy__content ul {
  list-style-type: disc !important;
  padding-left: 2rem !important;
  margin-bottom: 1.5rem;
}

.disclaimer__content li,
.privacy__content li {
  list-style-type: disc !important;
  display: list-item !important;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #4a5568;
}

.disclaimer__content h3,
.privacy__content h3 {
  color: #1a365d;
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}

.disclaimer__content h2,
.privacy__content h2 {
  color: #1a365d;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.disclaimer__content h2:first-child,
.privacy__content h2:first-child {
  margin-top: 0;
}

.disclaimer__content p,
.privacy__content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy,
.terms {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.privacy__container,
.terms__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.privacy__title,
.terms__title {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 2rem;
  text-align: center;
}

.privacy__content,
.terms__content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy__content h2,
.terms__content h2 {
  color: #1a365d;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.privacy__content h2:first-child,
.terms__content h2:first-child {
  margin-top: 0;
}

.privacy__content p,
.terms__content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy__content ul {
  list-style-type: disc !important;
  padding-left: 2rem !important;
  margin-bottom: 1.5rem;
}

.privacy__content li {
  list-style-type: disc !important;
  display: list-item !important;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #4a5568;
}

.privacy__content h3 {
  color: #1a365d;
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}

.main_whoitsfor {
  background: url("../images/WhoItsFor/WhoItsFor-Hero.jpg") center / cover no-repeat;
}

.outro_whoitsfor {
  background: url("../images/WhoItsFor/WhoItsFor-CTA.jpg") center / cover no-repeat;
}

/* Who It's For Page Styles */
.main_whoitsfor {
  background: url('../images/WhoItsFor/WhoItsFor-Hero.jpg') center/cover no-repeat;
}

.whoitsfor-page {
  padding: 100px 0;
}

.whoitsfor-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.whoitsfor-page__item {
  margin-bottom: 80px;
}

.whoitsfor-page__item:last-child {
  margin-bottom: 0;
}

.whoitsfor-page__column {
  display: flex;
  align-items: center;
  gap: 60px;
}

.whoitsfor-page__column:nth-child(even) {
  flex-direction: row-reverse;
}

.whoitsfor-page__content {
  flex: 1;
}

.whoitsfor-page__title {
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.2;
}

.whoitsfor-page__text {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.whoitsfor-page__text p {
  margin-bottom: 15px;
}

.whoitsfor-page__text p:last-child {
  margin-bottom: 0;
}

.whoitsfor-page__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.whoitsfor-page__button:hover {
  background-color: #0056b3;
}

.whoitsfor-page__img {
  flex: 1;
  max-width: 500px;
}

.whoitsfor-page__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.outro_whoitsfor {
  background: url('../images/WhoItsFor/WhoItsFor-CTA.jpg') center/cover no-repeat;
}

@media (max-width: 992px) {
  .whoitsfor-page {
    padding: 60px 0;
  }

  .whoitsfor-page__column {
    flex-direction: column;
    gap: 30px;
  }

  .whoitsfor-page__column:nth-child(even) {
    flex-direction: column;
  }

  .whoitsfor-page__img {
    max-width: 100%;
  }

  .whoitsfor-page__title {
    font-size: 28px;
  }

  .whoitsfor-page__text {
    font-size: 16px;
  }
}

@media (max-width: 48rem) {
  .whoitsfor-page {
    padding: 40px 0;
  }

  .whoitsfor-page__item {
    margin-bottom: 40px;
  }

  .whoitsfor-page__title {
    font-size: 24px;
  }

  .whoitsfor-page__text {
    font-size: 14px;
  }

  .whoitsfor-page__button {
    padding: 12px 24px;
  }
}

.page__debshaw {
 /* Limit the height to 60% of the viewport height */
  overflow: hidden; /* Hide any overflow content */
  padding: 0px; /* Adjust padding as needed */
}

.terms__content ul,
.privacy__content ul,
.disclaimer__content ul {
  list-style-type: disc !important;
  padding-left: 2rem !important;
  margin-bottom: 1.5rem;
}

.terms__content li,
.privacy__content li,
.disclaimer__content li {
  list-style-type: disc !important;
  display: list-item !important;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #4a5568;
}

@media (max-width: 768px) {
  .page__services .services-page__container {
    padding-top: 4rem;
  }

  .services-page__column_centered .main__container {
    padding-top: 0;
  }
}

.hero-container {
  padding-top: 100px;
}

@media (max-width: 768px) {
  .hero-container {
    padding-top: 50px;
  }
}

@media (max-width: 47.999rem) {
  .hero-container {
    padding-top: 2rem;
  }
}

/* Rolling Returns Chart Styles */
.rolling-chart-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  position: relative;
}

.rolling-chart-container canvas {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.rolling-chart-title {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  color: #1a237e;
}

.rolling-controls {
  text-align: center;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  background-color: darkgray;
  padding: 10px;
  font-size: 0.85em;
  border-radius: 6px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 400px) {
  .rolling-controls {
    flex-direction: column;
    align-items: center;
  }
}

.rolling-controls label,
.rolling-controls select {
  margin: 0 5px;
}

.rolling-disclaimer {
  max-width: 100%;
  margin: 20px auto;
  font-size: 0.75em;
  color: lightgray;
  text-align: left;
  font-family: Arial, sans-serif;
}

.rolling-disclaimer-chart {
  max-width: 100%;
  margin: 0px auto 0;
  font-size: 0.85em;
  color: gray;
  text-align: left;
  font-family: Arial, sans-serif;
}

.rolling-body {
  padding: 20px;
  font-family: Arial, sans-serif;
}

.delta-positive {
  background-color: rgba(0, 128, 0, 0.1);
}

.delta-negative {
  background-color: rgba(255, 0, 0, 0.1);
}

#annual-returns-table,
#metrics-table,
#metrics-table-balanced,
#metrics-table-balanced-vs-sp500 {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.95);
  margin: 30px auto;
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
}

#annual-returns-table thead th,
#metrics-table thead th,
#metrics-table-balanced thead th,
#metrics-table-balanced-vs-sp500 thead th {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: center;
  background-color: #f0f0f0;
  color: #1a237e;
  font-weight: 600;
}

#annual-returns-table tbody td,
#metrics-table tbody td,
#metrics-table-balanced tbody td,
#metrics-table-balanced-vs-sp500 tbody td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px 12px;
}

#annual-returns-table tbody td:first-child,
#metrics-table tbody td:first-child,
#metrics-table-balanced tbody td:first-child,
#metrics-table-balanced-vs-sp500 tbody td:first-child {
  background-color: #f0f0f0;
  color: #1a237e;
  font-weight: 600;
  text-align: center;
  padding: 6px 8px;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.delta-positive {
  background-color: rgba(144, 238, 144, 0.3);
}

.delta-negative {
  background-color: rgba(255, 99, 71, 0.15);
}

.annual-disclaimer {
  font-size: 0.85em;
  color: #555;
  margin-top: 0px;
  text-align: left;
}

.annual-table-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.annual-table-title {
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #1a237e;
}

.annual-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding-bottom: 0px;
}

@media (max-width: 480px) {
  .annual-table-container {
    padding: 10px;
    margin: 20px auto;
  }
  
  .annual-table-scroll {
    padding-bottom: 12px;
  }
  
  #annual-returns-table,
  #metrics-table,
  #metrics-table-balanced {
    min-width: 600px;
  }
  
  #annual-returns-table th,
  #annual-returns-table td,
  #metrics-table th,
  #metrics-table td,
  #metrics-table-balanced th,
  #metrics-table-balanced td {
    padding: 6px 8px;
    font-size: 0.9em;
  }
}

/* Dropdown Menu Styles */
.menu__item_dropdown {
  position: relative;
}

.menu__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 1000;
}

.menu__item_dropdown:hover .menu__dropdown {
  display: block;
}

.menu__dropdown li {
  list-style: none;
}

.menu__dropdown a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
}

.menu__dropdown a:hover {
  background-color: #f5f5f5;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
  .menu__dropdown {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .menu__item_dropdown.active .menu__dropdown {
    display: block;
  }

  .menu__dropdown a {
    padding: 10px 20px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__button img {
    right: 15px;
  }
  
  .spollers-faq__button span {
    padding: 15px 10px;
    padding-right: 45px;
    font-weight: 600;
    font-size: 14px;
  }
}

.membership {
  background-color: #1a365d;
  padding: 4rem 0;
  text-align: center;
}

.membership__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.membership__title {
  color: white;
  margin-bottom: 1.5rem;
}

.membership__text {
  color: white;
  margin-bottom: 2rem;
}

.membership__text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .membership {
    padding: 3rem 0;
  }
  
  .membership__title {
    font-size: 2.5rem;
  }
  
  .membership__text p {
    font-size: 1.1rem;
  }
}

.services-page__text p,
.about__text p {
  margin-bottom: 20px !important;
}

.services-page__text p:last-child,
.about__text p:last-child {
  margin-bottom: 0 !important;
}

.ride-trends li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: white;
}

.buying-selling li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: black;
}

.etf-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #303a4d;
}

.main__image .chart-container p.disclaimer {
  max-width: 800px;
  margin: 0;
  padding: 0;
  font-size: 0.75em;
  color: #444;
  text-align: left;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

p.disclaimer {
  max-width: 800px;
  margin: 0;
  padding: 0;
  font-size: 0.75em;
  color: #444;
  text-align: left;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Style for the diversification chart disclaimer */
.about__image .chart-container .disclaimer {
  background: none;
}

/* Style for disclaimer links */
.disclaimer a {
  color: #333;
  text-decoration: underline;
}

.disclaimer a:hover {
  color: #000;
}

#metrics-table-balanced {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.95);
  margin: 30px auto;
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
}

#metrics-table-balanced thead th {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: center;
  background-color: #f0f0f0;
  color: #1a237e;
  font-weight: 600;
}

#metrics-table-balanced tbody td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px 12px;
}

#metrics-table-balanced tbody td:first-child {
  background-color: #f0f0f0;
  color: #1a237e;
  font-weight: 600;
  text-align: center;
  padding: 6px 8px;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#metrics-table-balanced thead th:nth-child(3) {
  padding-left: 6px;
  padding-right: 6px;
  max-width: 120px;
  white-space: nowrap;
}

/* Working table class */
.metrics-table-working {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.95);
  margin: 30px auto;
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
}

.metrics-table-working thead th {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: center;
  background-color: #f0f0f0;
  color: #1a237e;
  font-weight: 600;
}

.metrics-table-working tbody td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px 12px;
}

.metrics-table-working tbody td:first-child {
  background-color: #f0f0f0;
  color: #1a237e;
  font-weight: 600;
  text-align: center;
  padding: 6px 8px;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}




