:root {
  /* Color Palette: French Elegance */
  --c-navy: #1a2b4c;
  --c-navy-light: #2a3f6a;
  --c-gold: #c5a059;
  --c-gold-hover: #a88644;
  --c-cream: #f9f6f0;
  --c-white: #ffffff;
  --c-light-gray: #f0f2f5;
  --c-text-main: #333333;
  --c-text-muted: #666666;
  --c-error: #d9534f;

  /* Typography */
  --f-heading: "Cormorant Garamond", serif;
  --f-body: "Lato", sans-serif;

  /* Variables */
  --transition-standard: 0.3s ease-in-out;
  --radius-sm: 4px;
  --radius-md: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--f-body);
  background-color: var(--c-white);
  color: var(--c-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-standard);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-block {
  padding: 100px 0;
}
.text-center {
  text-align: center;
}
.w-full {
  width: 100%;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-900 {
  max-width: 900px;
}

/* Colors */
.bg-cream {
  background-color: var(--c-cream);
}
.bg-navy {
  background-color: var(--c-navy);
}
.bg-white {
  background-color: var(--c-white);
}
.bg-light-gray {
  background-color: var(--c-light-gray);
}
.text-white {
  color: var(--c-white) !important;
}
.text-white-muted {
  color: rgba(255, 255, 255, 0.7);
}
.text-gold {
  color: var(--c-gold) !important;
}
.text-muted {
  color: var(--c-text-muted);
}
.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Typography */
.serif-heading {
  font-family: var(--f-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 24px;
  line-height: 1.1;
}
.subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--f-body);
}
.body-paragraph {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}
.large-text {
  font-size: 1.25rem;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--c-gold);
  color: var(--c-white);
  font-family: var(--f-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: var(--transition-standard);
  border: 1px solid var(--c-gold);
}
.btn-gold:hover {
  background-color: var(--c-gold-hover);
  border-color: var(--c-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: transparent;
  color: var(--c-navy);
  font-family: var(--f-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-navy);
  transition: var(--transition-standard);
}
.btn-outline-dark:hover {
  background-color: var(--c-navy);
  color: var(--c-white);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--c-navy);
  color: var(--c-white);
  font-family: var(--f-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: var(--transition-standard);
  border: 1px solid var(--c-navy);
}
.btn-navy:hover {
  background-color: var(--c-navy-light);
  border-color: var(--c-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 43, 76, 0.2);
}

/* Header */
.consult-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--c-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-standard);
}
.consult-header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  transition: height 0.3s ease;
}
.consult-header.scrolled .header-inner {
  height: 70px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-navy);
}
.logo-svg {
  width: 36px;
  height: 36px;
}
.brand-name {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.desktop-menu ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
.desktop-menu a {
  font-family: var(--f-body);
  font-weight: 700;
  color: var(--c-text-main);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-standard);
}
.desktop-menu a:hover {
  color: var(--c-gold);
}
.active-item a {
  color: var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 4px;
}

.burger-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 2000;
}
.bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--c-navy);
  transition: var(--transition-standard);
}
.bar-mid {
  width: 20px;
  margin-left: auto;
}
.burger-menu-toggle:hover .bar-mid {
  width: 30px;
}

/* Mobile Menu Overlay */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 43, 76, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-standard);
}
.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.mobile-side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  z-index: 2000;
  background: var(--c-white);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
}
.mobile-side-menu.open {
  transform: translateX(0);
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
}
.menu-title {
  font-family: var(--f-heading);
  color: var(--c-navy);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.close-menu-btn {
  color: var(--c-text-main);
  padding: 5px;
  transition: var(--transition-standard);
}
.close-menu-btn:hover {
  color: var(--c-error);
  transform: rotate(90deg);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.m-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.m-link svg {
  color: var(--c-gold);
  width: 20px;
  height: 20px;
}
.m-link:hover {
  color: var(--c-gold);
  padding-left: 10px;
}
.menu-cta {
  margin-top: 30px;
}

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

/* Hero Section (Split Layout) */
.hero-split-section {
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--c-cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.elegant-label {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-gold);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 5px;
}
.hero-title {
  font-family: var(--f-heading);
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title span {
  font-style: italic;
  color: var(--c-gold);
}
.hero-description {
  font-size: 1.2rem;
  color: var(--c-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 550px;
}
.hero-btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-showcase {
  position: relative;
  padding: 20px;
}
.image-showcase img {
  border-radius: 2px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(26, 43, 76, 0.15);
}
.decor-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 90%;
  border: 2px solid var(--c-gold);
  z-index: 1;
  transform: translate(15px, -15px);
}

/* Standard Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reverse-order .split-visual {
  order: -1;
}

/* Concept */
.article-card-visual {
  position: relative;
}
.article-card-visual img {
  border-radius: 2px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.floating-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 25px 35px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(26, 43, 76, 0.2);
  border-left: 4px solid var(--c-gold);
}
.floating-badge svg {
  width: 36px;
  height: 36px;
  color: var(--c-gold);
}
.floating-badge strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.floating-badge span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Bento Practice */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.bento-card {
  background: var(--c-navy-light);
  padding: 50px 40px;
  border-radius: 2px;
  border-top: 3px solid transparent;
  transition: var(--transition-standard);
}
.bento-card:hover {
  border-top-color: var(--c-gold);
  transform: translateY(-5px);
  background: #2f4573;
}
.wide-card {
  grid-column: span 3;
  background: linear-gradient(
    135deg,
    var(--c-navy-light) 0%,
    rgba(197, 160, 89, 0.1) 100%
  );
}
@media (min-width: 1024px) {
  .wide-card {
    grid-column: span 1;
  }
}
.bento-icon {
  width: 50px;
  height: 50px;
  background: var(--c-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--c-gold);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bento-icon svg {
  width: 24px;
  height: 24px;
}
.bento-title {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  color: var(--c-white);
  margin-bottom: 15px;
}
.bento-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

/* Finance */
.composite-image {
  position: relative;
}
.composite-image img {
  position: relative;
  z-index: 2;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.accent-square {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 50%;
  height: 50%;
  background: var(--c-cream);
  z-index: 1;
}

/* Geography */
.icon-circle {
  width: 80px;
  height: 80px;
  background: var(--c-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  box-shadow: 0 10px 20px rgba(26, 43, 76, 0.2);
}
.icon-circle svg {
  width: 36px;
  height: 36px;
}
.info-alert {
  display: flex;
  gap: 20px;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 2px;
  text-align: left;
  border-left: 4px solid var(--c-gold);
}
.info-alert svg {
  color: var(--c-gold);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.info-alert p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  position: relative;
  padding: 40px 30px;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-standard);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--c-gold);
}
.step-number {
  font-family: var(--f-heading);
  font-size: 4rem;
  color: rgba(197, 160, 89, 0.15);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  font-weight: 700;
}
.step-title {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  color: var(--c-navy);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.step-desc {
  color: var(--c-text-muted);
  position: relative;
  z-index: 1;
}

/* FAQ */
.accordion-container {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-navy);
  text-align: left;
}
.accordion-btn svg {
  color: var(--c-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.active .accordion-btn svg {
  transform: rotate(45deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-panel p {
  padding-bottom: 30px;
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  padding-right: 40px;
}

/* Contact Form */
.contact-roster {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.roster-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.roster-icon {
  width: 48px;
  height: 48px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}
.roster-details h4 {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  color: var(--c-navy);
  margin-bottom: 5px;
  font-weight: 700;
}
.roster-details span {
  color: var(--c-text-muted);
}

.form-wrapper {
  background: var(--c-cream);
  padding: 50px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.form-title {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  color: var(--c-navy);
  margin-bottom: 30px;
  font-weight: 700;
}
.input-group {
  margin-bottom: 24px;
  position: relative;
}
.input-group label:not(.custom-chk-label) {
  display: block;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.elegant-form input[type="text"],
.elegant-form input[type="tel"],
.elegant-form input[type="email"],
.elegant-form input[type="number"] {
  width: 100%;
  padding: 15px 20px;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text-main);
  transition: var(--transition-standard);
}
.elegant-form input:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}
.captcha-hl {
  color: var(--c-gold);
  font-weight: 900;
  font-size: 1.2rem;
}

.checkbox-group {
  margin-top: 10px;
}
.custom-chk-label {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
}
.custom-chk-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.chk-indicator {
  position: relative;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  flex-shrink: 0;
  transition: var(--transition-standard);
}
.custom-chk-label input:checked ~ .chk-indicator {
  background: var(--c-navy);
  border-color: var(--c-navy);
}
.chk-indicator:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-chk-label input:checked ~ .chk-indicator:after {
  display: block;
}
.chk-text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.legal-link {
  color: var(--c-navy);
  text-decoration: underline;
  font-weight: 700;
}
.legal-link:hover {
  color: var(--c-gold);
}

.error-msg {
  display: none;
  color: var(--c-error);
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 700;
}
.input-group.invalid input {
  border-color: var(--c-error);
}
.input-group.invalid .error-msg {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 80px 0 30px;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand-info .brand-link {
  color: var(--c-white);
  margin-bottom: 20px;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 300px;
  line-height: 1.6;
}
.f-heading {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.f-links,
.f-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-links a,
.f-contact-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.f-links a:hover {
  color: var(--c-white);
  padding-left: 5px;
}
.accent-link a {
  color: var(--c-gold) !important;
  font-weight: 700;
  text-decoration: underline;
}
.f-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.f-contact-list i {
  color: var(--c-gold);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Modals & Toasts */
.feedback-toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 20px 24px;
  border-radius: 2px;
  font-family: var(--f-body);
  font-weight: 700;
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(26, 43, 76, 0.3);
  border-left: 4px solid var(--c-gold);
}
.toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.toast-content i {
  color: var(--c-gold);
  width: 24px;
  height: 24px;
}
.feedback-toast.show {
  transform: translateX(0);
}

.cookie-notice-modal {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 9999;
  width: 90%;
  max-width: 650px;
  background: var(--c-white);
  padding: 30px;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 4px solid var(--c-gold);
}
.cookie-notice-modal.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
}
.cookie-visual i {
  width: 48px;
  height: 48px;
  color: var(--c-navy);
}
.cookie-text-block h3 {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-navy);
  margin-bottom: 8px;
  font-weight: 700;
}
.cookie-text-block p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-text-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-btn-group {
    justify-content: center;
  }
  .reverse-order .split-visual {
    order: 0;
  }
  .bento-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .wide-card {
    grid-column: span 1;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-block {
    padding: 80px 0;
  }
  .form-wrapper {
    padding: 30px 20px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand-info .brand-link {
    justify-content: center;
  }
  .f-contact-list li {
    justify-content: center;
  }
  .cookie-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .floating-badge {
    position: static;
    transform: none;
    margin: 20px auto 0;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  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 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- 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 {
  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: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
