:root {
  /* Palette: Tech Blue */
  --color-bg: #ffffff;
  --color-bg-alt: #f4f6f8;
  --color-text: #0f172a;
  --color-text-light: #64748b;
  --color-accent: #2563eb; /* Electric Blue */
  --color-accent-hover: #1d4ed8;
  --color-white: #ffffff;
  --color-border: #e2e8f0;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing & Layout */
  --container-width: 1280px;
  --header-height: 80px;

  /* Shapes - Strict DNA */
  --radius: 0px;
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography Utils */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

/* Button Global Styles (Strict Shape) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius); /* Sharp corners */
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px); /* Micro-interaction */
}

.icon-sm {
  width: 18px;
  height: 18px;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__logo-icon {
  width: 32px;
  height: 32px;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.header__nav {
  display: none; /* Mobile first hidden */
}

@media (min-width: 992px) {
  .header__nav {
    display: block;
  }

  .header__list {
    display: flex;
    gap: 2.5rem;
  }

  .header__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
  }

  /* Micro-interaction: Underline slide */
  .header__link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
  }

  .header__link:hover {
    color: var(--color-accent);
  }

  .header__link:hover::after {
    width: 100%;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__cta {
  display: none;
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }
}

.header__burger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.5rem;
}

@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}

/* Mobile Menu Active State */
.header__nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  padding: 2rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.header__nav.active .header__list {
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

/* --- MAIN (Spacer) --- */
.main {
  padding-top: var(--header-height);
  min-height: 80vh; /* Temporary */
  background-color: var(--color-bg);
}

/* --- FOOTER --- */
.footer {
  background-color: var(--color-text); /* Dark background for footer */
  color: var(--color-white);
  padding: 4rem 2rem 1rem;
}

.footer__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer__mission {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer__note {
  font-size: 0.75rem;
  color: #64748b;
}

.footer__title {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  color: #e2e8f0;
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--color-accent);
  padding-left: 5px; /* Micro-interaction */
}

.footer__contacts {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__address {
  color: #e2e8f0;
  line-height: 1.6;
}

.footer__contact-link {
  display: block;
  color: var(--color-accent);
  font-weight: 500;
}

.footer__contact-link:hover {
  text-decoration: underline;
}

.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  color: #64748b;
  font-size: 0.85rem;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 6rem 0; /* Великі відступи зверху/знизу */
  min-height: 90vh; /* Майже на весь екран */
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1.2fr 0.8fr; /* Асиметрична сітка 60/40 */
    align-items: center;
  }
}

/* Typography & Content */
.hero__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3rem;
}

/* Лінія перед лейблом */
.hero__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background-color: var(--color-accent);
}

.hero__title {
  font-size: 3rem; /* Mobile first */
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem; /* Гігантський заголовок на десктопі */
  }
}

.text-accent {
  color: var(--color-accent);
  font-style: italic; /* Playfair Display Italic дуже гарний */
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin-bottom: 3rem;
  border-left: 1px solid var(--color-border);
  padding-left: 1.5rem; /* Strict style separator */
}

.btn-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 500px) {
  .btn-group {
    flex-direction: row;
    align-items: center;
  }
}

.hero__note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  max-width: 200px;
  line-height: 1.2;
}

/* Visuals & Asymmetry */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end; /* Притискаємо вправо */
}

.hero__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4; /* Портретна орієнтація */
  object-fit: cover;
  filter: grayscale(100%); /* Monochrome mood start */
  transition: filter 0.5s ease;
}

.hero__img:hover {
  filter: grayscale(0%); /* Колір при наведенні */
}

/* Декоративний синій квадрат (Tech Blue DNA + Strict Shape) */
.hero__deco-box {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 50%;
  height: 50%;
  background-color: var(--color-accent);
  z-index: -1;
}

/* --- ANIMATION CSS (Reveal Effect) --- */
/* Обгортка, яка приховує контент, що виїжджає */
.reveal-wrap {
  overflow: hidden;
  position: relative;
  display: block;
}

/* Елемент, який зміщений вниз і буде підніматися */
.reveal-el {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

/* Стан видимості */
.is-visible .reveal-el {
  transform: translateY(0);
  opacity: 1;
}

/* Анімація картинки (масштаб + прозорість) */
.reveal-img {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-img.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* --- GLOBAL SECTION UTILS --- */
.section-pad {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

/* --- INSIGHTS SECTION --- */
.insights {
  background-color: var(--color-bg-alt); /* Light Grey Background */
  border-top: 1px solid var(--color-border);
}

.insights__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

/* Desktop Grid: Sticky Title Left, List Right */
@media (min-width: 992px) {
  .insights__container {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .insights__header {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

.insights__deco-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin-top: 1rem;
}

/* --- INSIGHT CARD (Strict DNA) --- */
.insight-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #cbd5e1; /* Darker border for visible structure */
  transition: all 0.4s ease;
  cursor: default;
}

/* Grid inside card for tablet+ */
@media (min-width: 768px) {
  .insight-card {
    grid-template-columns: auto 1fr;
    padding: 2.5rem 2rem; /* Add padding for hover effect box */
    gap: 3rem;
  }
}

/* Hover Effect: "Card" appears from list style */
.insight-card:hover {
  background-color: var(--color-white);
  transform: translateX(10px); /* Asymmetric shift interaction */
  border-bottom-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); /* Very subtle soft shadow */
}

/* Meta Column (Number + Tag) */
.insight-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .insight-card__meta {
    flex-direction: column;
    align-items: flex-start;
    min-width: 80px;
  }
}

.insight-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: #cbd5e1; /* Muted grey number */
  transition: color 0.3s ease;
}

.insight-card:hover .insight-card__num {
  color: var(--color-accent); /* Number lights up blue */
}

.insight-card__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius); /* Strict 0px */
}

/* Content Column */
.insight-card__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-card__title {
  font-size: 1.75rem;
  color: var(--color-text);
}

.insight-card__desc {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 90%;
}

.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  position: relative;
  width: fit-content;
}

.insight-card__link:hover {
  color: var(--color-accent);
}

.icon-xs {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.insight-card__link:hover .icon-xs {
  transform: translateX(4px); /* Arrow moves right */
}

/* --- EXPERTISE SECTION --- */
.expertise {
  background-color: var(--color-white);
}

.expertise__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .expertise__container {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }
}

/* Info Column */
.expertise__info {
  position: sticky;
  top: 6rem;
}

.expertise__desc {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.expertise__cta-box {
  background-color: var(--color-bg-alt); /* Light Grey Box */
  padding: 2rem;
  border: 1px solid var(--color-border);
  /* Strict DNA: 0px radius */
}

.cta-label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.btn--full-width {
  width: 100%;
  margin-bottom: 1rem;
}

.cta-note {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  display: block;
}

/* --- ACCORDION STYLES --- */
.expertise__accordion {
  border-top: 1px solid var(--color-text); /* Strong top line */
}

.acc-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.acc-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.acc-header:hover .acc-title {
  color: var(--color-accent);
}

.acc-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  font-weight: 500;
}

.acc-icon {
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

/* Active State Styles */
.acc-item.active .acc-icon {
  transform: rotate(45deg); /* Plus becomes X */
  color: var(--color-accent);
}

.acc-item.active .acc-title {
  color: var(--color-accent);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.acc-content {
  padding-bottom: 2rem;
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 90%;
}

/* --- STRATEGY SECTION (Dark Theme) --- */
.strategy {
  background-color: var(--color-text); /* Dark Blue Background */
  color: var(--color-white);
}

.strategy__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .strategy__container {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }
}

/* Content Side */
.strategy__label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8; /* Muted text */
  margin-bottom: 1rem;
}

.strategy__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .strategy__title {
    font-size: 3.5rem;
  }
}

.text-accent-light {
  color: #60a5fa; /* Lighter Blue for Dark Mode */
  font-style: italic;
  font-family: var(--font-heading);
}

.strategy__desc {
  font-size: 1.125rem;
  color: #cbd5e1; /* Light Grey text */
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 500px;
}

/* White Button Variant */
.btn--white {
  background-color: var(--color-white);
  color: var(--color-text);
}

.btn--white:hover {
  background-color: #e2e8f0;
  transform: translateY(-2px);
}

.strategy__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #64748b;
  max-width: 300px;
}

.strategy__note strong {
  color: #94a3b8;
}

/* Stats Grid Side */
.strategy__grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 600px) {
  .strategy__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  padding: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.stat-item:hover {
  background-color: rgba(255, 255, 255, 0.03); /* Subtle light hover */
}

.stat-item__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: #60a5fa; /* Accent Light */
  margin-bottom: 0.5rem;
}

.stat-item__label {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.stat-item__text {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* --- CONTACT SECTION --- */
.contact {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.contact__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .contact__container {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.contact__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  max-width: 450px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--color-text);
}

a.contact-value:hover {
  color: var(--color-accent);
}

/* --- FORM STYLES (Strict DNA) --- */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  background-color: #fafafa;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius); /* 0px */
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error {
  border-color: #ef4444;
}

.error-msg {
  display: block;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  height: 1rem; /* Reserve space */
}

.custom-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.hidden-checkbox {
  display: none;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border);
  background-color: #fff;
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.hidden-checkbox:checked + .custom-checkbox {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.hidden-checkbox:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label,
.consent-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.consent-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1rem;
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

.success-message {
  display: none;
  text-align: center;
  padding: 3rem;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  animation: fadeIn 0.5s ease;
}

.success-message.active {
  display: block;
}

.success-icon {
  width: 48px;
  height: 48px;
  color: #16a34a;
  margin-bottom: 1rem;
}

.success-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #166534;
}

.btn--outline {
  margin-top: 1.5rem;
  background: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  padding: 0.5rem 1.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-accent);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  z-index: 9999;

  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--color-text);
}

.cookie-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* --- LEGAL PAGES STYLE --- */
.pages {
  padding: 4rem 0;
  min-height: 60vh;
}

.pages .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pages h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.pages h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.pages p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.pages ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.pages a {
  color: var(--color-accent);
}
