:root {
  --uk-navy: #0f172a;
  --uk-red: #e11d48;
  --uk-red-hover: #be123c;
  --uk-gray-dark: #334155;
  --uk-gray: #64748b;
  --uk-light: #f8fafc;
  --uk-white: #ffffff;
  --uk-border: #e2e8f0;

  --f-serif: "Merriweather", serif;
  --f-sans: "Inter", sans-serif;

  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rad-sm: 6px;
  --rad-md: 12px;
  --rad-lg: 24px;

  --sh-md: 0 4px 15px rgba(15, 23, 42, 0.05);
  --sh-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
  --sh-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--f-sans);
  color: var(--uk-navy);
  background-color: var(--uk-white);
  line-height: 1.6;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.bg-light {
  background-color: var(--uk-light);
}
.bg-navy {
  background-color: var(--uk-navy);
}
.bg-white {
  background-color: var(--uk-white);
}
.bg-red {
  background-color: var(--uk-red);
}
.bg-gray-dark {
  background-color: var(--uk-gray-dark);
}

.text-white {
  color: var(--uk-white) !important;
}
.c-red {
  color: var(--uk-red) !important;
}
.text-gray {
  color: #cbd5e1 !important;
}
.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-300 {
  max-width: 300px;
}

.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 32px;
}
.p-12 {
  padding: 48px;
}
@media (max-width: 768px) {
  .p-12 {
    padding: 32px 24px;
  }
}

.opacity-80 {
  opacity: 0.8;
}
.opacity-70 {
  opacity: 0.7;
}
.text-sm {
  font-size: 0.9rem;
}
.font-bold {
  font-weight: 700;
}
.inline-flex {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.shadow-xl {
  box-shadow: var(--sh-xl);
}
.shadow-2xl {
  box-shadow: var(--sh-2xl);
}
.rad-lg {
  border-radius: var(--rad-lg);
}

.u-link {
  color: var(--uk-red);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.u-link:hover {
  color: var(--uk-navy);
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-serif);
  color: var(--uk-navy);
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-weight: 700;
}
.h-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: -1px;
}
.h-title span {
  color: var(--uk-red);
  font-style: italic;
}
.s-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.s-sub {
  font-size: 1.15rem;
  color: var(--uk-gray);
  font-family: var(--f-sans);
  font-weight: 500;
}
h3 {
  font-size: 1.5rem;
  font-family: var(--f-sans);
  font-weight: 700;
}

p {
  font-size: 1.1rem;
  margin: 0 0 16px 0;
  font-weight: 400;
  color: var(--uk-gray-dark);
}
.h-desc {
  font-size: 1.15rem;
  color: var(--uk-gray);
  max-width: 600px;
}
.s-desc {
  font-size: 1.1rem;
  max-width: 700px;
}

.red-line {
  width: 60px;
  height: 3px;
  background-color: var(--uk-red);
  margin-bottom: 24px;
}
.title-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.title-wrap .red-line {
  margin: 0 auto 24px;
}

.btn-solid,
.btn-solid-sm,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-weight: 600;
  border-radius: var(--rad-sm);
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-solid {
  background-color: var(--uk-red);
  color: var(--uk-white);
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-solid:hover {
  background-color: var(--uk-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
}

.btn-solid-sm {
  background-color: var(--uk-red);
  color: var(--uk-white);
  padding: 10px 24px;
  font-size: 0.85rem;
}
.btn-solid-sm:hover {
  background-color: var(--uk-red-hover);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--uk-border);
  color: var(--uk-navy);
  padding: 14px 34px;
  font-size: 1rem;
}
.btn-outline:hover {
  border-color: var(--uk-navy);
  color: var(--uk-navy);
}

.uk-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--uk-border);
  transition: var(--trans);
}
.uk-head.scrolled {
  box-shadow: var(--sh-md);
  padding: 5px 0;
}

.h-wrapper {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--trans);
}
.uk-head.scrolled .h-wrapper {
  height: 70px;
}

.uk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1100;
  position: relative;
}
.brand-name {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--uk-navy);
  letter-spacing: 0.5px;
}

.d-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--uk-gray-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}
.nav-a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--uk-red);
  transition: var(--trans);
}
.nav-a:hover::after,
.nav-a.active::after {
  width: 100%;
}
.nav-a:hover {
  color: var(--uk-navy);
}

.burger-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--uk-light);
  border: 1px solid var(--uk-border);
  border-radius: var(--rad-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.line {
  width: 22px;
  height: 2px;
  background-color: var(--uk-navy);
  transition: var(--trans);
}

@media (max-width: 1024px) {
  .d-menu {
    display: none;
  }
  .burger-toggle {
    display: flex;
  }
}

.m-overlay {
  position: fixed;
  inset: 0;
  background: var(--uk-white);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}
body.no-scroll .m-overlay {
  opacity: 1;
  pointer-events: auto;
}
.m-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.m-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--uk-border);
}
@media (max-width: 576px) {
  .m-top {
    padding: 20px 24px;
  }
}
.m-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--uk-border);
  border-radius: var(--rad-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--uk-navy);
  transition: var(--trans);
}
.m-close:hover {
  background: var(--uk-navy);
  color: var(--uk-white);
  transform: rotate(90deg);
}

.m-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
  overflow-y: auto;
}
.m-link {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--uk-navy);
  transition: var(--trans);
  text-align: center;
}
.m-link:hover {
  color: var(--uk-red);
  transform: scale(1.05);
}

.m-bot {
  padding: 32px;
  border-top: 1px solid var(--uk-border);
  text-align: center;
  color: var(--uk-gray);
}
.m-bot p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.m-bot i {
  color: var(--uk-red);
  width: 18px;
  height: 18px;
}

.s-pad {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .s-pad {
    padding: 80px 0;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.align-c {
  align-items: center;
}
.reverse-mob .txt-col {
  order: 2;
}
.reverse-mob .img-col {
  order: 1;
}
@media (max-width: 991px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .reverse-mob .txt-col {
    order: 1;
  }
  .reverse-mob .img-col {
    order: 2;
  }
}

.s-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  background: var(--uk-navy);
  overflow: hidden;
}
.s-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
@media (max-width: 991px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .h-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .h-acts {
    justify-content: center;
  }
  .h-title,
  .h-desc {
    color: var(--uk-white);
  }
}

.h-text h1,
.h-text p {
  color: var(--uk-white);
}
.h-desc {
  color: #cbd5e1;
}
.h-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--uk-border);
  color: var(--uk-white);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.h-acts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.h-acts .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--uk-white);
}
.h-acts .btn-outline:hover {
  background: var(--uk-white);
  color: var(--uk-navy);
}

.v-frame {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.v-frame img {
  position: relative;
  z-index: 2;
  border-radius: var(--rad-md);
  box-shadow: var(--sh-xl);
}
.v-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 2px solid var(--uk-red);
  z-index: 1;
  border-radius: var(--rad-md);
}
@media (max-width: 768px) {
  .v-frame {
    padding: 0;
  }
  .v-frame::after {
    display: none;
  }
}

.v-badge {
  position: absolute;
  bottom: 20px;
  left: -30px;
  background: var(--uk-white);
  color: var(--uk-navy);
  padding: 24px;
  border-radius: var(--rad-sm);
  z-index: 3;
  border-left: 4px solid var(--uk-red);
  box-shadow: var(--sh-xl);
  display: flex;
  align-items: center;
  gap: 16px;
}
.v-badge i {
  width: 32px;
  height: 32px;
  color: var(--uk-red);
}
.v-badge strong {
  display: block;
  font-family: var(--f-sans);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.v-badge span {
  font-size: 0.85rem;
  color: var(--uk-gray);
}
@media (max-width: 768px) {
  .v-badge {
    bottom: -20px;
    left: 20px;
    right: 20px;
    justify-content: center;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}
.b-card {
  padding: 48px;
  border-radius: var(--rad-lg);
  transition: var(--trans);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.b-card:hover {
  transform: translateY(-5px);
}
.b-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.b-card h3 {
  color: var(--uk-white);
  margin-bottom: 16px;
}
.b-card.wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .b-card.wide {
    grid-column: span 1;
  }
}

.b-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--rad-md);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.b-icon i {
  width: 32px;
  height: 32px;
  color: var(--uk-white);
}
.b-icon-lg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--rad-md);
  display: flex;
  justify-content: center;
  align-items: center;
}
.b-icon-lg i {
  width: 40px;
  height: 40px;
  color: var(--uk-white);
}
.flex-bw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (max-width: 576px) {
  .flex-bw {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .b-icon-lg {
    margin-bottom: 24px;
  }
}

.eu-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--uk-white);
  border: 1px solid var(--uk-border);
}
@media (max-width: 991px) {
  .eu-card {
    grid-template-columns: 1fr;
  }
}
.eu-text {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 576px) {
  .eu-text {
    padding: 32px 24px;
  }
}
.eu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-stat {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--uk-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 4px solid var(--uk-red);
}
.icon-xl {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}
.stat-val {
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--uk-navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--uk-gray);
}
@media (max-width: 576px) {
  .circle-stat {
    width: 250px;
    height: 250px;
  }
  .stat-val {
    font-size: 2.2rem;
  }
}

.icon-xxl {
  width: 80px;
  height: 80px;
}

.acc-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.acc-card {
  background: var(--uk-white);
  border: 1px solid var(--uk-border);
  border-radius: var(--rad-md);
  transition: var(--trans);
}
.acc-card.active {
  border-color: var(--uk-red);
  box-shadow: var(--sh-md);
}
.acc-btn {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--uk-navy);
}
@media (max-width: 576px) {
  .acc-btn {
    padding: 20px 24px;
    font-size: 1.05rem;
  }
}
.acc-btn i {
  color: var(--uk-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  background: var(--uk-light);
  border-radius: 50%;
  padding: 4px;
}
.acc-card.active .acc-btn i {
  transform: rotate(45deg);
  background: var(--uk-red);
  color: var(--uk-white);
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-content p {
  padding: 0 32px 32px;
  margin-bottom: 0;
  color: var(--uk-gray-dark);
}
@media (max-width: 576px) {
  .acc-content p {
    padding: 0 24px 24px;
  }
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  background: var(--uk-white);
}
@media (max-width: 991px) {
  .form-layout {
    grid-template-columns: 1fr;
  }
}
.form-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--uk-white);
}
.c-item i {
  flex-shrink: 0;
  margin-top: 2px;
}

.f-title {
  font-size: 2rem;
  color: var(--uk-navy);
  text-align: center;
}
.i-group {
  margin-bottom: 24px;
}
.i-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--uk-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.i-rel {
  position: relative;
}
.i-rel i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--uk-gray);
  width: 20px;
  height: 20px;
}
.i-rel input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--uk-light);
  border: 1px solid var(--uk-border);
  border-radius: var(--rad-sm);
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--uk-navy);
  transition: var(--trans);
}
.i-rel input:focus {
  outline: none;
  border-color: var(--uk-red);
  background: var(--uk-white);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.check-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-group input {
  margin-top: 6px;
  width: 20px;
  height: 20px;
  accent-color: var(--uk-red);
  cursor: pointer;
  flex-shrink: 0;
}
.check-group label {
  font-size: 0.85rem;
  color: var(--uk-gray-dark);
  cursor: pointer;
  line-height: 1.6;
}

.uk-foot {
  padding: 80px 0 0;
  border-top: 4px solid var(--uk-red);
}
.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .f-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.f-head {
  color: var(--uk-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--f-sans);
}
.f-ul li {
  margin-bottom: 16px;
}
.f-ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.f-ul a:hover {
  color: var(--uk-red);
  padding-left: 6px;
}
.f-hl {
  color: var(--uk-red) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}

.c-list-f li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.c-list-f i {
  flex-shrink: 0;
}

.f-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.cookie-pop {
  position: fixed;
  bottom: 32px;
  left: 32px;
  max-width: 420px;
  background: var(--uk-white);
  border: 1px solid var(--uk-border);
  border-top: 4px solid var(--uk-red);
  padding: 24px;
  border-radius: var(--rad-md);
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .cookie-pop {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
.cookie-pop.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cp-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.cp-icon i {
  width: 32px;
  height: 32px;
}
.cp-title-inpage {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--uk-navy);
  font-family: var(--f-sans);
}
.cp-desc {
  font-size: 0.85rem;
  color: var(--uk-gray-dark);
  margin-bottom: 0;
  line-height: 1.5;
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 22px;
    margin-top: 25px;
  }
  .margin {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .pages {
    padding: 90px 0 50px;
  }
  .pages h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .text-wrapper {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .text-wrapper h2 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .text-wrapper h3 {
    font-size: 16px;
  }
  .text-wrapper p {
    font-size: 13px;
    line-height: 1.6;
  }
  .margin {
    font-size: 24px;
    margin: 80px 0 30px;
  }
  .split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .pages {
    padding: 80px 0 40px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .text-wrapper {
    padding: 15px 10px;
  }
  .text-wrapper h2 {
    font-size: 16px;
    margin-top: 15px;
  }
  .text-wrapper h3 {
    font-size: 14px;
  }
  .text-wrapper p {
    font-size: 12px;
  }
  .margin {
    font-size: 20px;
    margin: 60px 0 20px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title-inpage {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .contact-page-main {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .cp-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .cp-phone-link {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 120px;
    text-align: center;
  }

  .cp-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cp-divider {
    margin: 0 auto 30px auto;
  }

  .cp-status {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 40px;
  }

  .cp-phone-link {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cp-details {
    gap: 8px;
  }

  .cp-label {
    font-size: 12px;
  }

  .cp-address-box {
    padding-top: 20px;
    max-width: 100%;
  }

  .cp-addr {
    font-size: 16px;
  }

  .cp-email {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-page-main {
    padding-top: 100px;
    min-height: 70vh;
  }

  .cp-title {
    font-size: 22px;
  }

  .cp-divider {
    width: 50px;
  }

  .cp-status {
    font-size: 12px;
  }

  .cp-phone-link {
    font-size: 20px;
  }

  .cp-addr {
    font-size: 14px;
  }

  .cp-email {
    font-size: 12px;
  }
}
