@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

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

:root {
  --sage-green: #e8f0ec;
  --pale-eucalyptus: #d6e5df;
  --warm-ivory: #fafaf7;
  --light-stone: #c9d3cd;
  --muted-olive: #8fa69a;
  --deep-forest: #2f4f44;
  --white: #ffffff;
  --black: #1a1a1a;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  background-color: var(--warm-ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant", serif;
  font-weight: 500;
  line-height: 1.3;
  color: var(--deep-forest);
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(47, 79, 68, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--deep-forest);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--muted-olive);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--deep-forest);
  transition: all 0.3s ease;
}

.mobile-menu-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1001;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-close:hover svg path {
  stroke: var(--muted-olive);
}

.hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--pale-eucalyptus) 100%);
  padding: 120px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143, 166, 154, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--deep-forest);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--muted-olive);
  margin-bottom: 36px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--deep-forest);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--muted-olive);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(47, 79, 68, 0.2);
}

.btn-primary-light {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--white);
  color: var(--deep-forest);
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary-light:hover {
  background-color: var(--sage-green);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  color: var(--deep-forest);
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--deep-forest);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--deep-forest);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.philosophy {
  padding: 100px 24px;
  background-color: var(--white);
}

.philosophy-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-olive);
  margin-bottom: 16px;
  font-weight: 500;
}

.eyebrow-center {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-olive);
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--deep-forest);
}

.section-title-center {
  font-size: 42px;
  margin-bottom: 48px;
  color: var(--deep-forest);
  text-align: center;
}

.philosophy-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.85;
}

.services-overview {
  padding: 100px 24px;
  background-color: var(--sage-green);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(47, 79, 68, 0.15);
}

.service-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-title {
  font-size: 26px;
  margin: 24px 24px 12px;
  color: var(--deep-forest);
}

.service-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.75;
  padding: 0 24px 24px;
}

.signature-spaces {
  padding: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.split-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  padding: 80px 60px;
  background-color: var(--white);
}

.body-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.8;
  margin-bottom: 20px;
}

.body-text-large {
  font-size: 20px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.85;
  margin-bottom: 24px;
}

.body-text-center {
  font-size: 17px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.8;
  margin-bottom: 20px;
  text-align: center;
}

.link-arrow {
  color: var(--muted-olive);
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.3s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.design-approach {
  padding: 0;
}

.curated-details {
  padding: 100px 24px;
  background-color: var(--pale-eucalyptus);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.detail-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}

.detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detail-item:hover .detail-image {
  transform: scale(1.05);
}

.selected-projects {
  padding: 100px 24px;
  background-color: var(--white);
}

.projects-staggered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.project-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image {
  transform: scale(1.08);
}

.project-info {
  padding: 20px;
  background-color: var(--white);
}

.project-name {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--deep-forest);
}

.project-type {
  font-size: 15px;
  color: var(--muted-olive);
}

.text-center {
  text-align: center;
}

.client-experience {
  padding: 100px 24px;
  background-color: var(--sage-green);
}

.consultation-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--muted-olive) 0%, var(--deep-forest) 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 32px;
}

.footer {
  background-color: var(--deep-forest);
  color: var(--white);
  padding: 80px 24px 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

.page-hero {
  padding: 100px 24px 80px;
  background-color: var(--sage-green);
  text-align: center;
}

.page-title {
  font-size: 56px;
  margin-bottom: 16px;
  color: var(--deep-forest);
}

.page-subtitle {
  font-size: 20px;
  color: var(--muted-olive);
  font-weight: 300;
}

.services-detailed {
  padding: 100px 24px;
  background-color: var(--white);
}

.service-detail {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.service-detail-title {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--deep-forest);
}

.service-detail-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.8;
}

.service-showcase {
  padding: 0;
}

.service-process {
  padding: 100px 24px;
  background-color: var(--pale-eucalyptus);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
}

.step-number {
  font-family: "Cormorant", serif;
  font-size: 48px;
  color: var(--muted-olive);
  margin-bottom: 16px;
}

.step-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--deep-forest);
}

.step-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.75;
}

.cta-section {
  padding: 100px 24px;
  background-color: var(--sage-green);
}

.editorial-section {
  padding: 100px 24px;
  background-color: var(--white);
}

.editorial-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 48px;
}

.editorial-content {
  margin-top: 48px;
}

.styling-principles {
  padding: 100px 24px;
  background-color: var(--pale-eucalyptus);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.principle-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
}

.principle-title {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--deep-forest);
}

.principle-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.8;
}

.styling-showcase {
  padding: 0;
}

.portfolio-gallery {
  padding: 100px 24px;
  background-color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(47, 79, 68, 0.9), transparent);
  padding: 32px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-project-title {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.portfolio-project-type {
  font-size: 15px;
  color: var(--white);
  opacity: 0.9;
}

.space-feature {
  padding: 0;
}

.about-story {
  padding: 100px 24px;
  background-color: var(--white);
}

.about-content {
  margin-top: 48px;
}

.about-values {
  padding: 100px 24px;
  background-color: var(--pale-eucalyptus);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.value-item {
  text-align: center;
}

.value-title {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--deep-forest);
}

.value-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.8;
}

.about-approach {
  padding: 100px 24px;
  background-color: var(--white);
}

.contact-section {
  padding: 100px 24px;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 48px;
}

.contact-info {
  padding-right: 40px;
}

.contact-detail {
  margin-bottom: 32px;
}

.contact-label {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--deep-forest);
}

.contact-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.8;
}

.contact-form-container {
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--deep-forest);
}

.form-input {
  padding: 14px 16px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  border: 2px solid var(--light-stone);
  border-radius: 4px;
  background-color: var(--white);
  color: var(--black);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--muted-olive);
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.8;
}

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

.map-section {
  padding: 100px 24px;
  background-color: var(--pale-eucalyptus);
}

.map-container {
  margin-top: 48px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(47, 79, 68, 0.15);
}

.thankyou-section {
  padding: 150px 24px;
  background-color: var(--sage-green);
}

.thankyou-icon {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.thankyou-title {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--deep-forest);
}

.thankyou-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.85;
  margin-bottom: 20px;
}

.thankyou-actions {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-page {
  padding: 100px 24px;
  background-color: var(--white);
}

.legal-title {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--deep-forest);
}

.legal-updated {
  font-size: 15px;
  color: var(--muted-olive);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--deep-forest);
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--deep-forest);
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.85;
  margin-bottom: 20px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
  opacity: 0.85;
  margin-bottom: 12px;
}

@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-close {
    display: none !important;
  }

  .hero-title {
    font-size: 48px;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .split-image {
    height: 400px;
  }

  .split-content {
    padding: 60px 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 36px;
  }

  .page-title {
    font-size: 40px;
  }

  .section-title,
  .section-title-center {
    font-size: 32px;
  }

  .cta-title {
    font-size: 36px;
  }

  .thankyou-title {
    font-size: 36px;
  }

  .hero {
    padding: 80px 24px 60px;
  }

  .philosophy,
  .services-overview,
  .curated-details,
  .selected-projects,
  .client-experience,
  .consultation-cta,
  .service-process,
  .cta-section,
  .editorial-section,
  .styling-principles,
  .portfolio-gallery,
  .about-story,
  .about-values,
  .about-approach,
  .contact-section,
  .map-section {
    padding: 60px 16px;
  }
  
  .service-showcase {
    padding: 0;
  }

  .split-content {
    padding: 40px 24px;
  }

  .process-steps,
  .principles-grid,
  .projects-staggered,
  .portfolio-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .container,
  .container-narrow {
    padding: 0 12px;
  }

  .header-container {
    padding: 16px 12px;
  }

  .logo-link {
    font-size: 14px;
  }

  .hero {
    padding: 60px 12px 40px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .btn-primary,
  .btn-primary-light,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .page-hero {
    padding: 60px 12px 50px;
  }

  .page-title {
    font-size: 32px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .section-title,
  .section-title-center {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .cta-title {
    font-size: 28px;
  }

  .thankyou-title {
    font-size: 28px;
  }

  .legal-title {
    font-size: 32px;
  }

  .philosophy,
  .services-overview,
  .curated-details,
  .selected-projects,
  .client-experience,
  .consultation-cta,
  .service-process,
  .cta-section,
  .editorial-section,
  .styling-principles,
  .portfolio-gallery,
  .about-story,
  .about-values,
  .about-approach,
  .contact-section,
  .map-section,
  .legal-page {
    padding: 40px 12px;
  }
  
  .service-showcase {
    padding: 0;
  }

  .split-content {
    padding: 30px 16px;
  }

  .split-image {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    margin: 0;
  }

  .service-image {
    height: 200px;
  }

  .service-title {
    font-size: 22px;
    margin: 20px 16px 10px;
  }

  .service-description {
    font-size: 14px;
    padding: 0 16px 20px;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .projects-staggered,
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-image {
    height: 300px;
  }

  .footer {
    padding: 60px 12px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info {
    padding-right: 0;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .thankyou-actions {
    flex-direction: column;
    gap: 12px;
  }

  .thankyou-actions .btn-primary,
  .thankyou-actions .btn-secondary {
    width: 100%;
  }

  .body-text,
  .body-text-large,
  .body-text-center {
    font-size: 15px;
  }

  .eyebrow,
  .eyebrow-center {
    font-size: 12px;
  }

  .legal-content h2 {
    font-size: 24px;
    margin-top: 32px;
  }

  .legal-content h3 {
    font-size: 20px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }
}
