:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #ffffff;
  --hero-gradient2: #ffffff;
  --footer-bg-color: #19367b;
  --link-color: #19367b;
  --header-bg-color: #19367b;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffff;
}
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: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color) !important;
}
.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
  .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.error_page {
  min-height: 70vh;
}
  .footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}
.footer a {
  text-decoration: none;
  color: whitesmoke;
}
.footer a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
.footer img {
        filter: brightness(0) invert(1);
      }
 .navbar {
  background-color: var(--header-bg-color) !important;
}
.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.with-bg {
  background-image: url('/images/sportwetten-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, rgba(0, 0, 0, 0.815));
  opacity: 0.2;
  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;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.criteria-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(23, 49, 122, 0.18), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, #eef3ff 0%, #e9eefb 100%);
  isolation: isolate;
}
.criteria-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(38, 72, 166, 0.14), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(68, 114, 255, 0.12), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.28), transparent 30%);
  pointer-events: none;
  animation: sectionGlow 12s ease-in-out infinite alternate;
}
.criteria-section .container {
  z-index: 2;
}
.criteria-section .section-badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(28, 58, 141, 0.12);
  border: 1px solid rgba(28, 58, 141, 0.18);
  color: #1f3f97;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.criteria-section h2 {
  color: #14213d;
  font-weight: 800;
  margin-bottom: 1rem;
}
.criteria-section > .container > .row:first-child p,
.criteria-section .col-lg-10 p {
  color: #33415c;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.box-one {
  position: relative;
  padding: 2rem 1.6rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 10px 30px rgba(18, 42, 105, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.box-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 40%),
    linear-gradient(315deg, rgba(30, 64, 175, 0.08), transparent 45%);
  pointer-events: none;
}
.box-one::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 68%);
  pointer-events: none;
  animation: pulseFloat 8s ease-in-out infinite;
}
.box-one:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(18, 42, 105, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(44, 90, 180, 0.25);
}
.box-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(26, 53, 133, 0.95), rgba(44, 94, 196, 0.88));
  box-shadow:
    0 12px 24px rgba(26, 53, 133, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: iconFloat 4.5s ease-in-out infinite;
}
.box-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 26px;
  border: 1px solid rgba(41, 87, 191, 0.22);
  animation: ringPulse 3.2s ease-in-out infinite;
}
.box-icon i {
  font-size: 1.9rem;
  color: #ffffff;
  line-height: 1;
}
.box-one h3 {
  position: relative;
  color: #14213d;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-align: center;
}
.box-one p {
  position: relative;
  color: #24324d;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.box-one p:last-child {
  margin-bottom: 0;
}
.criteria-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.orb-one {
  width: 240px;
  height: 240px;
  top: 40px;
  left: -70px;
  background: radial-gradient(circle, rgba(44, 94, 196, 0.25), transparent 70%);
  animation: floatOrb 14s ease-in-out infinite;
}
.orb-two {
  width: 280px;
  height: 280px;
  bottom: 20px;
  right: -80px;
  background: radial-gradient(circle, rgba(24, 48, 120, 0.22), transparent 70%);
  animation: floatOrb 18s ease-in-out infinite reverse;
}
.orb-three {
  width: 160px;
  height: 160px;
  top: 50%;
  left: 52%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  animation: floatOrbSmall 10s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.28;
  }
}
@keyframes pulseFloat {
  0%, 100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  50% {
    transform: scale(1.08) translateY(8px);
    opacity: 0.75;
  }
}
@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -20px, 0);
  }
}
@keyframes floatOrbSmall {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-10px, 18px, 0) scale(1.08);
  }
}
@keyframes sectionGlow {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}
@media (max-width: 991.98px) {
  .criteria-section h2 {
    font-size: 2rem;
  }
  .box-one {
    padding: 1.7rem 1.25rem 1.35rem;
  }
  .box-one h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575.98px) {
  .criteria-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .criteria-section h2 {
    font-size: 1.7rem;
  }
  .box-icon {
    width: 64px;
    height: 64px;
  }
  .box-icon i {
    font-size: 1.6rem;
  }
}
.faq {
  position: relative;
  padding: 4.5rem 2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(236, 241, 252, 0.95) 0%, rgba(227, 234, 248, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 20px 50px rgba(19, 45, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
}
.faq::before,
.faq::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.faq::before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(34, 73, 169, 0.18), transparent 70%);
  filter: blur(8px);
  animation: faqFloatOne 12s ease-in-out infinite;
}
.faq::after {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -50px;
  background: radial-gradient(circle, rgba(79, 127, 255, 0.16), transparent 70%);
  filter: blur(10px);
  animation: faqFloatTwo 14s ease-in-out infinite;
}
.faq > * {
  position: relative;
  z-index: 1;
}
.faq h2 {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(25, 58, 145, 0.10);
  border: 1px solid rgba(25, 58, 145, 0.14);
  color: #17357e;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(20, 42, 102, 0.08);
}
.faq h3 {
  position: relative;
  margin: 0 0 0.85rem;
  padding: 1.2rem 1.25rem 1.2rem 4.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #14213d;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.28;
  box-shadow:
    0 12px 26px rgba(20, 42, 102, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq h3::before {
  content: "?";
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #193b93, #2854c2);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow:
    0 10px 22px rgba(25, 59, 147, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.faq h3:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 34px rgba(20, 42, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}
.faq p {
  margin: 0 0 1.8rem;
  padding: 1.1rem 1.25rem 1.2rem 1.25rem;
  border-left: 4px solid rgba(29, 65, 156, 0.22);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.22);
  color: #24324d;
  font-size: 1.04rem;
  line-height: 1.9;
  box-shadow: 0 8px 20px rgba(20, 42, 102, 0.04);
}
.faq p:last-child {
  margin-bottom: 0;
}
@keyframes faqFloatOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, 16px, 0) scale(1.08);
  }
}
@keyframes faqFloatTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, -14px, 0) scale(1.06);
  }
}
@media (max-width: 991.98px) {
  .faq {
    padding: 3.5rem 1.5rem;
  }
  .faq h2 {
    font-size: 1.75rem;
  }
  .faq h3 {
    font-size: 1.45rem;
    padding: 1rem 1rem 1rem 3.9rem;
  }
}
@media (max-width: 575.98px) {
  .faq {
    padding: 2.75rem 1rem;
    border-radius: 22px;
  }
  .faq h2 {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
  }
  .faq h3 {
    font-size: 1.2rem;
    line-height: 1.35;
    padding: 0.95rem 0.95rem 0.95rem 3.5rem;
    border-radius: 18px;
  }
  .faq h3::before {
    left: 0.9rem;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 1.05rem;
  }
  .faq p {
    font-size: 0.98rem;
    line-height: 1.8;
    padding: 0.95rem 1rem 1rem 1rem;
  }
}
.fancy-section {
  position: relative;
  padding: 4.5rem 2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(236, 241, 252, 0.96) 0%, rgba(227, 234, 248, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 20px 50px rgba(19, 45, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
}
.fancy-section h2 {
  color: #19367B;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.fancy-section h3 {
  color: #19367B;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
}
.fancy-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #19367B;
  box-shadow: 0 0 10px rgba(25, 54, 123, 0.4);
}
.fancy-section::before,
.fancy-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.fancy-section::before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(34, 73, 169, 0.18), transparent 70%);
  filter: blur(8px);
  animation: fancyFloatOne 12s ease-in-out infinite;
}
.fancy-section::after {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -50px;
  background: radial-gradient(circle, rgba(79, 127, 255, 0.16), transparent 70%);
  filter: blur(10px);
  animation: fancyFloatTwo 14s ease-in-out infinite;
}
.fancy-section > * {
  position: relative;
  z-index: 1;
}
@keyframes fancyFloatOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, 16px, 0) scale(1.08);
  }
}
@keyframes fancyFloatTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, -14px, 0) scale(1.06);
  }
}
@media (max-width: 991.98px) {
  .fancy-section {
    padding: 3.5rem 1.5rem;
    border-radius: 24px;
  }
}
@media (max-width: 575.98px) {
  .fancy-section {
    padding: 2.75rem 1rem;
    border-radius: 20px;
  }
}
.styled-section {
  position: relative;
  padding: 4.5rem 2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(236, 241, 252, 0.96) 0%, rgba(227, 234, 248, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 20px 50px rgba(19, 45, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
}
.styled-section::before,
.styled-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.styled-section::before {
  width: 240px;
  height: 240px;
  top: -70px;
  right: -60px;
  background: radial-gradient(circle, rgba(25, 54, 123, 0.18), transparent 70%);
  filter: blur(8px);
  animation: floatOne 12s ease-in-out infinite;
}
.styled-section::after {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -50px;
  background: radial-gradient(circle, rgba(70, 110, 255, 0.16), transparent 70%);
  filter: blur(10px);
  animation: floatTwo 14s ease-in-out infinite;
}
.styled-section > * {
  position: relative;
  z-index: 1;
}
.styled-section h2 {
  color: #19367B;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  text-align: center;
}
.styled-section h3 {
  color: #19367B;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.6rem;
}
.styled-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #19367B;
  box-shadow: 0 0 10px rgba(25, 54, 123, 0.4);
}
.styled-section p {
  color: #24324d;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.styled-list {
  list-style: none;
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 10px 25px rgba(20, 42, 102, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.styled-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: #1f2e4d;
  font-weight: 500;
}
.styled-list li:last-child {
  margin-bottom: 0;
}
.styled-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #19367B;
  font-size: 0.9rem;
  font-weight: bold;
}
@keyframes floatOne {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-15px, 15px, 0);
  }
}
@keyframes floatTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(15px, -15px, 0);
  }
}
@media (max-width: 991.98px) {
  .styled-section {
    padding: 3.5rem 1.5rem;
  }
  .styled-section h2 {
    font-size: 1.9rem;
  }
  .styled-section h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575.98px) {
  .styled-section {
    padding: 2.8rem 1rem;
  }
  .styled-section h2 {
    font-size: 1.6rem;
  }
  .styled-section h3 {
    font-size: 1.2rem;
  }
  .styled-section p {
    font-size: 0.98rem;
  }
}