:root {
  --body-bg-color: #f8fafc;
  --body-bg-gradient1: #f8fafc;
  --body-bg-gradient2: #e2e8f0;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #395c98;
  --hero-gradient2: #c53d43;
  --footer-bg-color: #a9c8fe;
  --footer-bg-gradient1: #a9c8fe;
  --footer-bg-gradient2: #395c98;
  --link-color: #c53d43;
  --box-color: #c53d43;
  --box-text-color: #000;
  --header-bg-color: #ffffff;
  --font-family: system-ui;
  --nav-link-color: #141414;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}

html {
  overflow-x: hidden;
}

body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

}


h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}

p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 40px 0;
  scroll-margin-top: 70px;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}


.content-area h2 {
  display: block;
  border-bottom: 3px solid var(--heading-color);
  padding-bottom: 4px;
  width: fit-content;
  margin: 1rem auto;
  color: var(--footer-bg-gradient2);
  font-weight: 700;
}


.content-area section {
  margin: 30px 0;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.main-section-style-contrast {
  position: relative;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--box-color) 22%, transparent);
  border-radius: 20px;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--box-color) 40%, #ffffff),
      #ffffff 65%);
  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
}

.main-section-style-contrast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 72px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--hero-gradient1);
}

.main-section-style-contrast,
.main-section-style-contrast :is(h2, h3, h4, h5, h6, p, li, span, strong, em, td, th, a) {
  color: var(--box-text-color, #000) !important;
}

.main-section-style-contrast a {
  text-decoration: underline !important;
}

.main-section-style-contrast a:hover {
  color: var(--box-text-color, #000) !important;
  opacity: 0.8;
}







.sidebar-search-box {
  width: 279px;
  margin-bottom: 15px;
}

.sidebar-search-box h3 {
  margin: 0 0 20px;
  font-weight: 700;
  color: var(--body-text-color) !important;
}

.sidebar-search-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-search-box input[type="search"],
.sidebar-search-box input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #ffffff;
  color: #222222 !important;
  font-size: 0.95rem;
  font-family: var(--font-family);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sidebar-search-box input[type="search"]:focus,
.sidebar-search-box input[type="email"]:focus {
  border-color: var(--link-color);
  box-shadow: 0 0 0 4px rgba(176, 54, 54, 0.12);
}

.sidebar-search-box input[type="search"]::placeholder,
.sidebar-search-box input[type="email"]::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.sidebar-search-box button {
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--box-color);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(59, 104, 91, 0.25);
}

.sidebar-newsletter-box p {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--body-text-color);
  opacity: 0.75;
}

.sidebar-links {
  width: 279px;
  margin-bottom: 15px;
}

.sidebar-links h3 {
  margin: 0 0 20px;
  font-weight: 700;
}

.sidebar-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-page-list li {
  list-style: none;
}

.sidebar-page-list a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--body-text-color);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 500;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.sidebar-page-list a:hover {
  background: rgba(176, 54, 54, 0.08);
  color: var(--link-color);
  transform: translateX(4px);
}

.sidebar-page-list a.active {
  background: var(--box-color);
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(59, 104, 91, 0.25);
}

.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}


.error_page {
  min-height: 70vh;
}



.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 1.9rem 19px;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer a {
  color: var(--link-color);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer-divider {
  border: none;
  height: 1px;
  margin: 1.5rem auto;
  width: 60%;
  background: linear-gradient(90deg,
      transparent,
      var(--link-color),
      transparent);
  opacity: 0.5;
}

.footer-bottom {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}


.footer img {
  filter: brightness(0) invert(1);
}

.footer {
  background-image: linear-gradient(135deg, var(--footer-bg-gradient1), var(--footer-bg-gradient2));
}

.navbar {
  background-color: var(--header-bg-color) !important;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url('/images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}


@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

}

.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(in srgb,
      var(--header-bg-color) 65%,
      transparent) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}

.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(in srgb,
      var(--header-bg-color) 95%,
      transparent) !important;
}

.nav-item.dropdown>.nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown>.nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

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

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown>.nav-link .arrow {
    margin-left: 7px;
  }

  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover>.nav-link .arrow {
    transform: rotate(-135deg);
  }

  .nav-item.dropdown:hover>.dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 1199px) {
  .nav-item.dropdown>.nav-link .arrow {
    padding: 4px;
  }
}




/* Hero edge shape: torn-bottom */
.hero-section.hero-shape-torn-bottom {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 82% calc(100% - 20px), 62% calc(100% - 34px), 40% calc(100% - 10px), 18% calc(100% - 30px), 0 calc(100% - 13px));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 82% calc(100% - 20px), 62% calc(100% - 34px), 40% calc(100% - 10px), 18% calc(100% - 30px), 0 calc(100% - 13px));
}

/* Keeps the hero text clear of the cut instead of letting the shape eat it. */
.hero-section.hero-shape-torn-bottom>.container {
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .hero-section.hero-shape-torn-bottom {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 82% calc(100% - 12px), 62% calc(100% - 20px), 40% calc(100% - 6px), 18% calc(100% - 18px), 0 calc(100% - 8px));
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 82% calc(100% - 12px), 62% calc(100% - 20px), 40% calc(100% - 6px), 18% calc(100% - 18px), 0 calc(100% - 8px));
  }

  .hero-section.hero-shape-torn-bottom>.container {
    padding-bottom: 24px;
  }
}




.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: -20px;
  z-index: 99999;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--link-color), var(--hero-gradient1, var(--hero-gradient-1)));
  box-shadow: 0 6px 18px rgba(11, 39, 96, 0.16);
  transition:
    opacity 0.3s ease,
    bottom 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.scroll-top i {
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(11, 39, 96, 0.2);
  background: linear-gradient(135deg, var(--hero-gradient1, var(--hero-gradient-1)), var(--hero-gradient2, var(--hero-gradient-2)));
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 18px;
}