:root {
  --body-bg-color: #ffffff;
  --body-text-color: #1f1e1e;
  --heading-color: #1a1818;
  --footer-bg-color: #a77f55;
  --link-color: #ebf0fa;
  --header-bg-color: #ffffff;
  --font-family: Calibri, Arial, sans-serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: rgb(255, 255, 255);
}
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;
  background-image:
  linear-gradient(rgba(255, 255, 255, rgb(255, 255, 255), 0.5)),
    url("/images/mountains.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
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);
}
.content-area a {
  color: rgb(223, 139, 30) ;
  text-decoration: underline;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
a {
    color: white;
    text-decoration: underline;
}
.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;
}
 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.623);
}
.hero-section {
  padding: 155px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.with-bg {
  background-image: url('/images/mountains-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.233));
  opacity: 0.5;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 30px;
  }
}
  .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;
  }
}
   .contact-container {
  width: 500px;
  margin: 100px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}
  .contact-container h2{
    color: black !important;
  }
@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}
.contact-header i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}
.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}
    .mountain-section {
        position: relative;
        overflow: hidden;
        padding: 40px 0;
        background:
            radial-gradient(circle at 15% 20%, rgba(195, 220, 255, 0.20), transparent 28%),
            radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.16), transparent 24%),
            radial-gradient(circle at 50% 85%, rgba(160, 196, 255, 0.16), transparent 30%),
            linear-gradient(135deg, #edf3f8 0%, #dfe9f2 45%, #edf2f7 100%);
    }
    .mountain-section::before,
    .mountain-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(10px);
        z-index: 0;
    }
    .mountain-section::before {
        width: 420px;
        height: 420px;
        top: -120px;
        left: -120px;
        background: radial-gradient(circle, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.05) 60%, transparent 100%);
        animation: floatOrbOne 11s ease-in-out infinite;
    }
    .mountain-section::after {
        width: 360px;
        height: 360px;
        bottom: -140px;
        right: -100px;
        background: radial-gradient(circle, rgba(121, 162, 199, 0.18) 0%, rgba(121, 162, 199, 0.06) 58%, transparent 100%);
        animation: floatOrbTwo 13s ease-in-out infinite;
    }
    .mountain-section .container {
        position: relative;
        z-index: 2;
    }
    .mountain-glass-wrap {
        position: relative;
        padding: 42px;
        border-radius: 34px;
        background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.10));
        border: 1px solid rgba(255,255,255,0.35);
        box-shadow:
            0 18px 50px rgba(31, 54, 78, 0.12),
            inset 0 1px 0 rgba(255,255,255,0.35);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        overflow: hidden;
    }
    .mountain-glass-wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.12) 28%, transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,0.06), transparent 45%);
        animation: glassShine 7s linear infinite;
        pointer-events: none;
    }
    .mountain-glass-wrap::after {
        content: "";
        position: absolute;
        inset: 14px;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.18);
        pointer-events: none;
    }
    .mountain-heading {
        position: relative;
        margin-bottom: 40px;
    }
    .mountain-heading h2 {
        margin-bottom: 18px;
        font-size: clamp(2rem, 3vw, 3rem);
        font-weight: 700;
        line-height: 1.15;
        color: #10233b;
        letter-spacing: -0.02em;
    }
    .mountain-heading p {
        margin-bottom: 16px;
        font-size: 1.08rem;
        line-height: 1.9;
        color: #22364d;
    }
    .box-one {
        position: relative;
        height: 100%;
        padding: 34px 28px 30px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.18));
        border: 1px solid rgba(255,255,255,0.38);
        box-shadow:
            0 14px 34px rgba(25, 53, 80, 0.10),
            inset 0 1px 0 rgba(255,255,255,0.32);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
        overflow: hidden;
        isolation: isolate;
    }
    .box-one::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 32%),
            linear-gradient(135deg, rgba(120, 155, 193, 0.10), transparent 48%);
        opacity: 0.9;
        z-index: -1;
    }
    .box-one::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -70px;
        bottom: -70px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(138, 180, 216, 0.18), transparent 68%);
        z-index: -1;
    }
    .box-one:hover {
        transform: translateY(-8px);
        box-shadow:
            0 20px 44px rgba(25, 53, 80, 0.16),
            inset 0 1px 0 rgba(255,255,255,0.32);
        border-color: rgba(255,255,255,0.52);
    }
    .box-one-icon {
        width: 68px;
        height: 68px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        border-radius: 18px;
        font-size: 1.7rem;
        color: #ffffff;
        background: linear-gradient(135deg, #5f7fa3, #8fb0cb);
        box-shadow:
            0 10px 24px rgba(73, 104, 137, 0.25),
            inset 0 1px 0 rgba(255,255,255,0.26);
        position: relative;
    }
    .box-one-icon::after {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 22px;
        border: 1px solid rgba(95, 127, 163, 0.18);
        animation: pulseRing 3s ease-in-out infinite;
    }
    .box-one h3 {
        margin-bottom: 18px;
        font-size: 1.65rem;
        font-weight: 700;
        line-height: 1.25;
        color: #12263f;
    }
    .box-one p {
        margin-bottom: 14px;
        color: #22364d;
        line-height: 1.9;
        font-size: 1rem;
    }
    .box-one p:last-child {
        margin-bottom: 0;
    }
    .mountain-grid {
        position: relative;
    }
    .mountain-grid::before {
        content: "";
        position: absolute;
        inset: -10px;
        background-image:
            linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
        background-size: 38px 38px;
        opacity: 0.35;
        mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
        -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
        pointer-events: none;
    }
    @keyframes floatOrbOne {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(26px, 18px) scale(1.06); }
    }
    @keyframes floatOrbTwo {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-22px, -16px) scale(1.08); }
    }
    @keyframes glassShine {
        0% { transform: translateX(-35%); opacity: 0; }
        15% { opacity: 1; }
        50% { opacity: 1; }
        100% { transform: translateX(35%); opacity: 0; }
    }
    @keyframes pulseRing {
        0%, 100% { transform: scale(1); opacity: 0.45; }
        50% { transform: scale(1.08); opacity: 0.15; }
    }
    @media (max-width: 991.98px) {
        .mountain-section {
            padding: 70px 0;
        }
        .mountain-glass-wrap {
            padding: 28px 20px;
            border-radius: 24px;
        }
        .box-one {
            padding: 28px 22px 24px;
        }
    }
  .section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.288), rgba(0, 0, 0, 0.5)), url('/images/mountains-bg.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #ffffff!important; 
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e7e4e4;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ddd;
    line-height: 1.6;
}
.section-wallets h3 {
    color: #ffffff!important; 
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
.fancy-section {
  --bg1: #eef7fb;
  --bg2: #dfeef7;
  --bg3: #f9f3d7;
  --text: #2e3c4a;
  --heading: #1f4f6b;
  --accent: #d4a017;
  --accent-soft: #efd77a;
  --line: rgba(31, 79, 107, 0.12);
  --card: rgba(255, 255, 255, 0.68);
  --shadow: 0 18px 45px rgba(36, 68, 95, 0.12);
  position: relative;
  overflow: hidden;
  margin: 40px auto;
  padding: 55px 40px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 35%),
    radial-gradient(circle at bottom right, rgba(212, 160, 23, 0.14), transparent 30%),
    linear-gradient(135deg, var(--bg1), var(--bg2) 58%, var(--bg3));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.85;
  isolation: isolate;
  animation: sectionFloat 7s ease-in-out infinite;
}
.fancy-section::before,
.fancy-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(8px);
}
.fancy-section::before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -70px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.22), rgba(212, 160, 23, 0.03) 70%);
  animation: blobMove1 10s ease-in-out infinite alternate;
}
.fancy-section::after {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -60px;
  background: radial-gradient(circle, rgba(98, 167, 206, 0.22), rgba(98, 167, 206, 0.03) 70%);
  animation: blobMove2 12s ease-in-out infinite alternate;
}
.fancy-section > * {
  position: relative;
  z-index: 1;
}
.fancy-section h2,
.fancy-section h3 {
  color: var(--heading);
  line-height: 1.25;
  letter-spacing: 0.3px;
}
.fancy-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 24px;
  padding-bottom: 16px;
  position: relative;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}
.fancy-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft), rgba(255, 255, 255, 0));
  animation: glowLine 3.5s ease-in-out infinite;
}
.fancy-section h3 {
  margin-top: 38px;
  margin-bottom: 14px;
  font-size: 1.35rem;
  padding: 14px 18px;
  border-left: 5px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(255, 248, 214, 0.5));
  box-shadow: 0 8px 24px rgba(31, 79, 107, 0.07);
  transform: translateX(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.fancy-section h3:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(31, 79, 107, 0.12);
}
.fancy-section p {
  margin: 0 0 18px;
  font-size: 1.03rem;
  color: var(--text);
  background: var(--card);
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 18px rgba(36, 68, 95, 0.05);
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  animation: fadeUp 0.8s ease both;
}
.fancy-section p:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(36, 68, 95, 0.1);
  background: rgba(255, 255, 255, 0.78);
}
.fancy-section p:nth-of-type(2) { animation-delay: 0.08s; }
.fancy-section p:nth-of-type(3) { animation-delay: 0.16s; }
.fancy-section p:nth-of-type(4) { animation-delay: 0.24s; }
.fancy-section p:nth-of-type(5) { animation-delay: 0.32s; }
.fancy-section p:nth-of-type(6) { animation-delay: 0.4s; }
.fancy-section p:nth-of-type(7) { animation-delay: 0.48s; }
.fancy-section p:nth-of-type(8) { animation-delay: 0.56s; }
.fancy-section p:nth-of-type(9) { animation-delay: 0.64s; }
.fancy-section p:nth-of-type(10) { animation-delay: 0.72s; }
.fancy-section p:nth-of-type(11) { animation-delay: 0.8s; }
.fancy-section p:nth-of-type(12) { animation-delay: 0.88s; }
.fancy-section p:nth-of-type(13) { animation-delay: 0.96s; }
.fancy-section p:nth-of-type(14) { animation-delay: 1.04s; }
.fancy-section {
  background-image:
    radial-gradient(circle at 10% 12%, rgba(255,255,255,0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 18%, rgba(212,160,23,0.18) 0 3px, transparent 4px),
    radial-gradient(circle at 18% 85%, rgba(98,167,206,0.16) 0 3px, transparent 4px),
    linear-gradient(135deg, var(--bg1), var(--bg2) 58%, var(--bg3));
  background-repeat: no-repeat;
}
.fancy-section .inner-frame {
  display: none;
}
.fancy-section::marker {
  content: "";
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glowLine {
  0%, 100% {
    width: 140px;
    opacity: 0.9;
  }
  50% {
    width: 180px;
    opacity: 1;
  }
}
@keyframes blobMove1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-18px, 24px) scale(1.08);
  }
}
@keyframes blobMove2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(22px, -14px) scale(1.06);
  }
}
@keyframes sectionFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@media (max-width: 768px) {
  .fancy-section {
    padding: 32px 15px;
    border-radius: 22px;
  }
  .fancy-section h2 {
    font-size: 1.75rem;
  }
  .fancy-section h3 {
    font-size: 1.12rem;
    padding: 12px 14px;
  }
  .fancy-section p {
    font-size: 0.98rem;
    padding: 14px 15px;
  }
}
.styled-list {
  --blue-1: #eef7fb;
  --blue-2: #d9edf7;
  --blue-3: #b9dced;
  --yellow-1: #f6e7a8;
  --yellow-2: #d4a017;
  --text: #2f3d4a;
  --shadow: 0 14px 34px rgba(38, 72, 96, 0.12);
  list-style: none;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}
.styled-list::before,
.styled-list::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.styled-list::before {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -50px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.18), transparent 70%);
  animation: softFloatOne 8s ease-in-out infinite alternate;
}
.styled-list::after {
  width: 160px;
  height: 160px;
  bottom: -50px;
  left: -45px;
  background: radial-gradient(circle, rgba(110, 175, 210, 0.2), transparent 70%);
  animation: softFloatTwo 10s ease-in-out infinite alternate;
}
.styled-list li {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  padding: 16px 18px 16px 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  box-shadow: 0 8px 22px rgba(38, 72, 96, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: fadeRise 0.7s ease both;
}
.styled-list li:last-child {
  margin-bottom: 0;
}
.styled-list li::before {
  content: "✦";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-1), var(--yellow-2));
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.28);
}
.styled-list li:hover {
  transform: translateY(-4px) translateX(3px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 26px rgba(38, 72, 96, 0.12);
}
.styled-list li:nth-child(1) { animation-delay: 0.08s; }
.styled-list li:nth-child(2) { animation-delay: 0.16s; }
.styled-list li:nth-child(3) { animation-delay: 0.24s; }
.styled-list li:nth-child(4) { animation-delay: 0.32s; }
.styled-list li:nth-child(5) { animation-delay: 0.4s; }
.styled-list li:nth-child(6) { animation-delay: 0.48s; }
.styled-list li:nth-child(7) { animation-delay: 0.56s; }
.styled-list li:nth-child(8) { animation-delay: 0.64s; }
@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes softFloatOne {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-14px, 18px) scale(1.06);
  }
}
@keyframes softFloatTwo {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(16px, -12px) scale(1.08);
  }
}
@media (max-width: 768px) {
  .styled-list {
    padding: 20px 16px;
    border-radius: 20px;
  }
  .styled-list li {
    padding: 14px 14px 14px 48px;
    font-size: 0.97rem;
  }
  .styled-list li::before {
    left: 14px;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}
  .alpine-eco-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background:
      radial-gradient(circle at 15% 20%, rgba(216, 158, 94, 0.18) 0%, transparent 30%),
      radial-gradient(circle at 85% 15%, rgba(216, 158, 94, 0.14) 0%, transparent 26%),
      radial-gradient(circle at 50% 85%, rgba(216, 158, 94, 0.10) 0%, transparent 28%),
      linear-gradient(180deg, #fffaf4 0%, #f7efe6 100%);
  }
  .alpine-eco-section::before,
  .alpine-eco-section::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(6px);
    opacity: 0.45;
    z-index: 0;
  }
  .alpine-eco-section::before {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(216, 158, 94, 0.22) 0%, rgba(216, 158, 94, 0.04) 55%, transparent 72%);
    animation: alpineFloatOne 10s ease-in-out infinite;
  }
  .alpine-eco-section::after {
    width: 360px;
    height: 360px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(216, 158, 94, 0.18) 0%, rgba(216, 158, 94, 0.03) 58%, transparent 72%);
    animation: alpineFloatTwo 12s ease-in-out infinite;
  }
  .alpine-eco-wrap {
    position: relative;
    z-index: 2;
  }
  .alpine-eco-heading {
    max-width: 980px;
    margin-bottom: 40px;
    position: relative;
  }
  .alpine-eco-heading::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    margin-top: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #D89E5E 0%, rgba(216, 158, 94, 0.15) 100%);
    animation: lineGlow 3.2s ease-in-out infinite;
  }
  .alpine-eco-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    margin-bottom: 22px;
    color: #1f1f1f;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .alpine-eco-heading p {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #2d2d2d;
    margin-bottom: 18px;
  }
  .box-second {
    position: relative;
    height: 100%;
    padding: 34px 28px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(216, 158, 94, 0.22);
    box-shadow:
      0 12px 35px rgba(28, 28, 28, 0.06),
      0 0 0 1px rgba(255, 255, 255, 0.45) inset;
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .box-second::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(216, 158, 94, 0) 0%, #D89E5E 50%, rgba(216, 158, 94, 0) 100%);
    animation: shimmerLine 4s linear infinite;
  }
  .box-second::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top right, rgba(216, 158, 94, 0.10), transparent 26%),
      radial-gradient(circle at bottom left, rgba(216, 158, 94, 0.08), transparent 24%);
    pointer-events: none;
    z-index: 0;
  }
  .box-second:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 158, 94, 0.45);
    box-shadow:
      0 18px 44px rgba(28, 28, 28, 0.10),
      0 0 0 1px rgba(216, 158, 94, 0.10) inset;
  }
  .box-second > * {
    position: relative;
    z-index: 2;
  }
  .box-second-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 2rem;
    color: #D89E5E;
    background: linear-gradient(180deg, rgba(216, 158, 94, 0.16) 0%, rgba(216, 158, 94, 0.07) 100%);
    border: 1px solid rgba(216, 158, 94, 0.22);
    box-shadow: 0 10px 24px rgba(216, 158, 94, 0.12);
    animation: iconPulse 3.8s ease-in-out infinite;
  }
  .box-second h3 {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #1f1f1f;
    font-weight: 700;
  }
  .box-second p {
    margin-bottom: 16px;
    color: #2f2f2f;
    line-height: 1.9;
    font-size: 1rem;
  }
  .box-second p:last-child {
    margin-bottom: 0;
  }
  .alpine-eco-particles span {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(216, 158, 94, 0.18);
    box-shadow: 0 0 0 8px rgba(216, 158, 94, 0.05);
    animation: particleRise linear infinite;
    z-index: 1;
  }
  .alpine-eco-particles span:nth-child(1) {
    left: 8%;
    bottom: -40px;
    animation-duration: 12s;
    animation-delay: 0s;
  }
  .alpine-eco-particles span:nth-child(2) {
    left: 22%;
    bottom: -60px;
    width: 14px;
    height: 14px;
    animation-duration: 16s;
    animation-delay: 2s;
  }
  .alpine-eco-particles span:nth-child(3) {
    left: 48%;
    bottom: -50px;
    animation-duration: 13s;
    animation-delay: 1s;
  }
  .alpine-eco-particles span:nth-child(4) {
    left: 68%;
    bottom: -70px;
    width: 12px;
    height: 12px;
    animation-duration: 18s;
    animation-delay: 3s;
  }
  .alpine-eco-particles span:nth-child(5) {
    left: 88%;
    bottom: -40px;
    animation-duration: 14s;
    animation-delay: 1.5s;
  }
  @keyframes alpineFloatOne {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 18px) scale(1.06); }
  }
  @keyframes alpineFloatTwo {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -14px) scale(1.05); }
  }
  @keyframes shimmerLine {
    0% { transform: translateX(-8%); opacity: 0.65; }
    50% { transform: translateX(8%); opacity: 1; }
    100% { transform: translateX(-8%); opacity: 0.65; }
  }
  @keyframes iconPulse {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 10px 24px rgba(216, 158, 94, 0.12); }
    50% { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 30px rgba(216, 158, 94, 0.18); }
  }
  @keyframes particleRise {
    0% {
      transform: translateY(0) scale(0.8);
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    100% {
      transform: translateY(-780px) scale(1.15);
      opacity: 0;
    }
  }
  @keyframes lineGlow {
    0%, 100% { opacity: 0.75; box-shadow: 0 0 0 rgba(216, 158, 94, 0); }
    50% { opacity: 1; box-shadow: 0 0 22px rgba(216, 158, 94, 0.22); }
  }
  @media (max-width: 991.98px) {
    .alpine-eco-section {
      padding: 70px 0;
    }
    .box-one {
      padding: 28px 22px 24px;
    }
    .box-one h3 {
      font-size: 1.4rem;
    }
  }
  .sidebar-linkinkg {
  background: #fff;
 width: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(216,158,94,0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.sidebar-linkinkg h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 700;
  color: #222;
  position: relative;
}
.sidebar-linkinkg h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #D89E5E;
  margin-top: 10px;
  border-radius: 2px;
}
.page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-list li {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-list li:last-child {
  border-bottom: none;
}
.page-list a {
  display: block;
  padding: 12px 10px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.page-list a:hover {
  background: rgba(216,158,94,0.12);
  color: #000;
  transform: translateX(4px);
}
.page-list a::before {
  content: "›";
  margin-right: 8px;
  color: #D89E5E;
  font-weight: bold;
}
.sidebar-search-box {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(216, 158, 94, 0.22);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.sidebar-search-box h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  position: relative;
}
.sidebar-search-box h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: #D89E5E;
}
.sidebar-search-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-search-box input[type="search"] {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(216, 158, 94, 0.28);
  border-radius: 12px;
  outline: none;
  background: #fffaf5;
  color: #222;
  font-size: 0.98rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.sidebar-search-box input[type="search"]::placeholder {
  color: #8a8178;
}
.sidebar-search-box input[type="search"]:focus {
  border-color: #D89E5E;
  box-shadow: 0 0 0 4px rgba(216, 158, 94, 0.14);
  background: #fff;
}
.sidebar-search-box button {
  height: 50px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #D89E5E 0%, #c98a47 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.75;
  box-shadow: 0 10px 20px rgba(216, 158, 94, 0.18);
}
.sidebar-search-box button:disabled {
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .sidebar-search-box {
    padding: 20px;
  }
  .sidebar-search-box input[type="search"],
  .sidebar-search-box button {
    height: 48px;
  }
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  