/* --- Variables & Reset --- */
:root {
  --font-heading: 'Cinzel', serif;
  --font-body: 'Manrope', sans-serif;

  --color-bg: #f9f8f4;
  --color-dark: #2c3e50;
  --color-accent: #c0392b;
  --color-gray: #95a5a6;
  --color-light-gray: #eaecee;
  --color-white: #ffffff;

  --container-width: 1240px;
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.main {
  flex: 1;
  /* Temporary padding to visualize header separation */
  padding-top: var(--header-height);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(249, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 62, 80, 0.05);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav__list {
  display: flex;
  gap: 40px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition);
}

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

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

.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--color-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.header__cta i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.header__cta:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.header__cta:hover i {
  transform: translate(2px, -2px);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition);
}

/* --- Footer --- */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 80px 0 30px;
  margin-top: auto;
}

.footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__col--brand .header__logo-text {
  color: var(--color-white);
  font-size: 1.8rem;
}

.footer__col--brand svg path {
  fill: var(--color-white); /* Override logo color for footer */
}
.footer__col--brand svg circle {
  fill: var(--color-accent);
}

.footer__desc {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer__socials {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.footer__social {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-accent);
}

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

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer__link:hover {
  color: var(--color-white);
  padding-left: 5px;
}

.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer__contact-item i {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  margin-top: 2px;
}

.footer__bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 30px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .header__cta {
    display: none; /* Hide CTA on smaller tablets to fit nav */
  }
}

@media (max-width: 768px) {
  .header__burger {
    display: flex;
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--color-bg);
    padding: 100px 40px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 25px;
  }

  .nav__link {
    font-size: 1.2rem;
    font-family: var(--font-heading);
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px; /* Space for fixed header */
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(249, 248, 244, 0.9) 0%, rgba(249, 248, 244, 0.6) 100%);
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero__content {
  max-width: 800px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(44, 62, 80, 0.05);
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 30px;
  opacity: 0; /* JS animation start state */
  transform: translateY(20px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background-color: #27ae60; /* Success Green */
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
  animation: pulse 2s infinite;
}

/* Title */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.hero__title-wrap {
  display: block;
  opacity: 0; /* JS animation start state */
  transform: translateY(30px);
}

/* Description */
.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(44, 62, 80, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0; /* JS animation start state */
  transform: translateY(20px);
}

/* Actions (Buttons) */
.hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0; /* JS animation start state */
  transform: translateY(20px);
}

.hero__btn {
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  transition: var(--transition);
}

.hero__btn--primary {
  background-color: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-dark);
}

.hero__btn--primary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(192, 57, 43, 0.2);
}

.hero__btn--outline {
  background-color: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.hero__btn--outline:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Stats */
.hero__stats {
  display: flex;
  gap: 60px;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
  padding-top: 30px;
  opacity: 0;
  transform: translateY(20px);
}

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

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.hero__stat-label {
  font-size: 0.9rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Animations Keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(39, 174, 96, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
  }
}

@media (max-width: 768px) {
  .hero__stats {
    gap: 30px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__btn {
    width: 100%;
  }
}

/* --- Global Section Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section__header {
  margin-bottom: 80px;
  max-width: 700px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--color-dark);
}

.section__subtitle {
  font-size: 1.1rem;
  color: rgba(44, 62, 80, 0.7);
  line-height: 1.6;
}

.text-accent {
  color: var(--color-accent);
  font-weight: 600;
}

/* --- Strategy Section --- */
.strategy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: strategy-counter;
}

.strategy__item {
  position: relative;
  padding-top: 60px; /* Space for the big number overlap */
}

.strategy__num {
  position: absolute;
  top: -40px;
  left: 0;
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(224, 224, 224, 0.4); /* Transparent gray */
  z-index: 1;
  pointer-events: none;
  transition: var(--transition);
}

.strategy__item:hover .strategy__num {
  color: rgba(192, 57, 43, 0.1); /* Accent tint on hover */
  transform: translateX(10px);
}

.strategy__content {
  position: relative;
  z-index: 2; /* Text above the number */
}

.strategy__title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  margin-bottom: 15px;
  color: var(--color-dark);
}

.strategy__desc {
  font-size: 0.95rem;
  color: rgba(44, 62, 80, 0.8);
  line-height: 1.7;
  border-top: 1px solid var(--color-accent);
  padding-top: 15px;
  width: 80%; /* Short line for aesthetic */
}

/* Animation Classes (Used by JS) */
.reveal-text,
.reveal-block {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 992px) {
  .strategy__grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .strategy__num {
    font-size: 6rem;
    top: -30px;
  }

  .strategy__desc {
    width: 100%;
  }
}

/* --- Innovation Section (Dark Theme) --- */
.innovation {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.text-white {
  color: var(--color-white);
}
.text-gray {
  color: rgba(255, 255, 255, 0.7);
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-item {
  background-color: rgba(255, 255, 255, 0.03); /* Very subtle glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 4px; /* Minimal rounding for strict look */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(192, 57, 43, 0.5); /* Accent border on hover */
  transform: translateY(-5px);
}

/* Grid Spans */
.bento-item--large {
  grid-column: span 2;
}

.bento-item--tall {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(192, 57, 43, 0.1) 100%);
}

.bento-item--cta {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  grid-column: span 2; /* Stretch across bottom right */
}

.bento-item--cta:hover {
  background-color: #a93226; /* Darker red */
  transform: scale(1.02);
}

/* Content Styles */
.bento-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.bento-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--color-white);
}

.bento-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.bento-badge {
  margin-top: auto; /* Pushes to bottom */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* CTA Specifics */
.bento-cta-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.bento-cta-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.bento-item--cta:hover .bento-cta-icon {
  transform: translateX(10px);
}

/* Responsiveness */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-item--large {
    grid-column: span 2;
  }

  .bento-item--tall {
    grid-column: span 2;
    grid-row: auto;
  }

  .bento-item--cta {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item--large,
  .bento-item--tall,
  .bento-item--cta {
    grid-column: span 1;
  }

  .bento-item {
    padding: 30px 20px;
  }
}

/* --- Growth Section --- */
.growth {
  background-color: var(--color-bg);
}

.growth__container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Split layout */
  gap: 80px;
  align-items: center;
}

/* List Styling */
.growth__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.growth__list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
}

.growth__list-item i {
  color: var(--color-accent);
  width: 24px;
  height: 24px;
}

/* Progress Bars */
.growth__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.progress-group {
  width: 100%;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-dark);
}

.progress-track {
  width: 100%;
  height: 8px; /* Slim elegant line */
  background-color: rgba(44, 62, 80, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background-color: var(--color-accent);
  width: 0; /* Start at 0 */
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

/* Add a subtle glow/shine effect to the bar */
.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.growth__note {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-top: 20px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
  .growth__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* --- Analytics Section (CTA) --- */
.analytics {
  background-image: url('img/54fa574e-54e4-45fc-84c7-7e1ed2398470.png'); /* Replace with a real abstract dark image if available */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  position: relative;
  padding: 140px 0;
  text-align: center;
}

.analytics__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.9); /* Dark overlay */
  z-index: 1;
}

.analytics__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.analytics__badges {
  display: flex;
  gap: 15px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.analytics__badge {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.analytics__btn {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.analytics__btn:hover {
  background-color: #a93226;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
}

/* --- Contact Section --- */
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact__details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact__detail-item i {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.contact__detail-item .label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.contact__detail-item .value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* Form Styling */
.contact__form {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #fafafa;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-error {
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none; /* Hidden by default */
}

/* Checkbox */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.form-checkbox {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: rgba(44, 62, 80, 0.7);
  line-height: 1.5;
}

.form-checkbox-label a {
  color: var(--color-dark);
  text-decoration: underline;
}

.form-btn {
  width: 100%;
  padding: 16px;
  background-color: var(--color-dark);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.form-btn:hover {
  background-color: var(--color-accent);
}

.form-success {
  margin-top: 20px;
  padding: 15px;
  background-color: #d4efdf;
  color: #196f3d;
  border-radius: 4px;
  display: none; /* Hidden */
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

/* --- Cookie Popup --- */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 8px;
  z-index: 2000;
  display: none; /* JS will show it */
  max-width: 500px;
  border-left: 4px solid var(--color-accent);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

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

.cookie-btn {
  background-color: var(--color-dark);
  color: var(--color-white);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

/* --- Policy Pages Styling (Extra) --- */
.pages {
  padding: 120px 0 80px;
}

.pages h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--color-dark);
}

.pages h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--color-dark);
}

.pages p {
  margin-bottom: 20px;
  color: rgba(44, 62, 80, 0.8);
}

.pages ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.pages li {
  margin-bottom: 10px;
  color: rgba(44, 62, 80, 0.8);
}

/* Responsive Contact */
@media (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
  }

  .analytics__title {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
