

:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;

  --footer-bg-color: #171f31;
  --link-color: #dae0ec;
  --header-bg-color: #ffffff;
  --font-family: Georgia, serif;
  --nav-link-color: #ffffff;
  --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: 15px 0;
  scroll-margin-top: 70px;
}

h2, h3 {
  color: var(--heading-color);
}



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

.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;
}
  .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);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}
.footer a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
  
.footer img {
        filter: brightness(0) invert(1);
      }

 .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.1);
}

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

.hero-section.with-bg {
  background-image: url('/images/georgia-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.514));
  opacity: 0.5;
  z-index: 1;
}

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

  
@media (max-width: 768px) {
  .hero-section {
    padding: 77px 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;
}
  /* Mobile nav */
@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;
  }
}

            

.screen {
  position: relative;
  background: #e0dfdf;
  border-radius: 15px;
  margin: 50px 0;
}

.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}


.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--hero-gradient2);
  font-size: 26px;
}

.app-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: var(--link-color);
}

.app-contact {
  margin-top: auto;
  color: var(--body-text-color);
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #000;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #000;
}

.app-form-button {
  background: var(--footer-bg-color);
  border: 2px solid var(--hero-gradient2);
  color: var(--link-color);
  font-size: 14px;
  cursor: pointer;
  outline: none;
  border-radius: 20px;
  padding: 5px 20px;
}

.app-form-button:hover {
  color: var(--hero-gradient1);
}

.dribbble {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}

@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }

  .screen-body-item {
    padding: 0;
  }
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


  .section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/images/georgia-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; 
}



.georgia-history-section {
  position: relative;
  padding: 20px 0;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(111, 146, 179, 0.18), transparent 30%),
    linear-gradient(135deg, #edf1f5 0%, #e6ebf0 45%, #dde3ea 100%);
  isolation: isolate;
}

.georgia-history-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 2px,
      transparent 2px,
      transparent 12px
    );
  pointer-events: none;
}

.georgia-history-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(92, 108, 128, 0.05) 100%
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.history-shell {
  position: relative;
  z-index: 2;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px rgba(46, 55, 73, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.history-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.32), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(201, 162, 39, 0.12), transparent 20%),
    radial-gradient(circle at 70% 80%, rgba(111, 146, 179, 0.16), transparent 24%);
  pointer-events: none;
}

.section-heading {
  position: relative;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  color: #2f241d;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.section-heading p {
  margin-bottom: 16px;
  line-height: 1.9;
  color: #3c4350;
}

.box-one {
  position: relative;
  padding: 34px 28px 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 18px 40px rgba(45, 51, 65, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.box-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.13), transparent 28%);
  pointer-events: none;
}

.box-one::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 68%);
  opacity: 0.8;
  pointer-events: none;
  animation: pulseFloat 7s ease-in-out infinite;
}

.box-one:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.28);
  box-shadow:
    0 24px 50px rgba(45, 51, 65, 0.16),
    0 0 0 1px rgba(201, 162, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.box-icon {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(168, 200, 204, 0.24), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    0 12px 24px rgba(90, 74, 43, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: iconGlow 5s ease-in-out infinite;
}

.box-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(201, 162, 39, 0.16);
  opacity: 0.8;
}

.box-icon i {
  font-size: 2rem;
  color: #7b5a2a;
  line-height: 1;
}

.box-one h3 {
  margin-bottom: 18px;
  font-size: 1.8rem;
  line-height: 1.25;
  color: #2f241d;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.box-one p {
  margin-bottom: 14px;
  line-height: 1.9;
  color: #404857;
}

.box-one p:last-child {
  margin-bottom: 0;
}

.glass-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.orb-one {
  top: 80px;
  left: 6%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.22), rgba(201, 162, 39, 0.03) 65%, transparent 72%);
  animation: floatOrb 9s ease-in-out infinite;
}

.orb-two {
  top: 30%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(111, 146, 179, 0.22), rgba(111, 146, 179, 0.04) 65%, transparent 74%);
  animation: floatOrbReverse 11s ease-in-out infinite;
}

.orb-three {
  bottom: 40px;
  left: 30%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05) 62%, transparent 72%);
  animation: pulseFloat 8s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

@keyframes floatOrbReverse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-20px, 18px, 0) scale(1.06);
  }
}

@keyframes pulseFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
  }
}

@keyframes iconGlow {
  0%, 100% {
    box-shadow:
      0 12px 24px rgba(90, 74, 43, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  50% {
    box-shadow:
      0 18px 30px rgba(90, 74, 43, 0.18),
      0 0 20px rgba(201, 162, 39, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 991.98px) {
  .georgia-history-section {
    padding: 80px 0;
  }

  .history-shell {
    padding: 30px 10px;
    border-radius: 24px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .box-one h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .georgia-history-section {
    padding: 60px 0;
  }

  .box-one {
    padding: 26px 20px 22px;
    border-radius: 20px;
  }

  .box-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .box-icon i {
    font-size: 1.7rem;
  }
}


.fancy-section {
  position: relative;
  padding: 70px 40px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at top left, rgba(126, 154, 118, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(92, 117, 140, 0.12), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 50px rgba(31, 45, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.fancy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 14px
    );
  pointer-events: none;
}

.fancy-section::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 154, 118, 0.18), transparent 70%);
  pointer-events: none;
}

.fancy-section h2,
.fancy-section h3,
.fancy-section p {
  position: relative;
  z-index: 1;
}

.fancy-section h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  color: #233126;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fancy-section h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7e9a76, #b8c7a8);
  box-shadow: 0 4px 12px rgba(126, 154, 118, 0.18);
}

.fancy-section h3 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #2e3b31;
  font-weight: 700;
}

.fancy-section h3::before {
  content: "✦";
  display: inline-block;
  margin-right: 10px;
  color: #7e9a76;
  font-size: 1rem;
  vertical-align: middle;
  transform: translateY(-1px);
}

.fancy-section p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #49555d;
  max-width: 980px;
}

.fancy-section p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .fancy-section {
    padding: 50px 24px;
    border-radius: 22px;
  }

  .fancy-section h2 {
    font-size: 2rem;
  }

  .fancy-section h3 {
    font-size: 1.35rem;
  }

  .fancy-section p {
    font-size: 1rem;
    line-height: 1.8;
  }
}





.newsletter {
  position: relative;
    width: 100%;
}

.newsletter-box {
  width: 100%;
  position: relative;
  padding: 28px 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 250, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 18px 40px rgba(31, 45, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.newsletter-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 149, 92, 0.16), transparent 72%);
  pointer-events: none;
}

.newsletter-box::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 146, 170, 0.14), transparent 72%);
  pointer-events: none;
}

.newsletter-badge,
.newsletter-box h3,
.newsletter-box p,
.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a5b2e;
  background: rgba(176, 149, 92, 0.12);
  border: 1px solid rgba(176, 149, 92, 0.18);
}

.newsletter-box h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #2d241d;
  font-weight: 700;
}

.newsletter-box p {
  margin-bottom: 20px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #55606d;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-field input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(130, 145, 160, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: #2f3a45;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.newsletter-field input::placeholder {
  color: #8a96a3;
}

.newsletter-field input:focus {
  border-color: rgba(176, 149, 92, 0.42);
  box-shadow: 0 0 0 4px rgba(176, 149, 92, 0.08);
  background: #fff;
}

.newsletter-form button {
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #7a5b2e, #b0955c);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: not-allowed;
  opacity: 0.9;
  box-shadow: 0 12px 22px rgba(122, 91, 46, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(122, 91, 46, 0.24);
}

@media (max-width: 767px) {
  .newsletter-box {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .newsletter-box h3 {
    font-size: 1.55rem;
  }

  .newsletter-box p {
    font-size: 0.95rem;
  }
}




.linking-element {
  position: relative;
  padding: 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 242, 250, 0.85)),
    radial-gradient(circle at top right, rgba(80, 140, 200, 0.12), transparent 40%);
  border: 1px solid rgba(180, 210, 240, 0.35);
  box-shadow:
    0 18px 40px rgba(30, 60, 100, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.linking-element::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 140, 200, 0.25), transparent 70%);
  pointer-events: none;
}

.linking-element::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 180, 240, 0.2), transparent 70%);
  pointer-events: none;
}

.linking-element h3,
.page-list {
  position: relative;
  z-index: 1;
}

.linking-element h3 {
  margin: 0 0 18px;
  font-size: 1.65rem;
  line-height: 1.2;
  color: #1f2f45;
  font-weight: 700;
}

.linking-element h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f8cc9, #7fb3e6);
  box-shadow: 0 4px 12px rgba(79, 140, 201, 0.25);
}

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

.page-list li {
  margin-bottom: 12px;
}

.page-list li:last-child {
  margin-bottom: 0;
}

.page-list a {
  position: relative;
  display: block;
  padding: 14px 16px 14px 44px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3b4f66;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(150, 190, 230, 0.25);
  transition: all 0.25s ease;
}

.page-list a::before {
  content: "➤";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #4f8cc9;
}

.page-list a:hover {
  transform: translateY(-2px);
  color: #1f2f45;
  border-color: rgba(79, 140, 201, 0.4);
  box-shadow: 0 10px 20px rgba(79, 140, 201, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
  .linking-element {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .linking-element h3 {
    font-size: 1.45rem;
  }

  .page-list a {
    font-size: 0.95rem;
    padding: 13px 14px 13px 42px;
  }
}