/*
Copyright (c) 2021 Kil Hyung-jin, with Reserved Font Name Pretendard.
https://github.com/orioncactus/pretendard

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
*/

@font-face {
	font-family: 'Pretendard';
	font-weight: 900;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-Black.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-Black.woff) format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 800;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-ExtraBold.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-ExtraBold.woff) format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 700;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-Bold.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-Bold.woff) format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 600;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-SemiBold.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-SemiBold.woff) format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 500;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-Medium.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-Medium.woff) format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 400;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-Regular.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-Regular.woff) format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 300;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-Light.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-Light.woff) format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 200;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-ExtraLight.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-ExtraLight.woff) format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 100;
	font-display: swap;
	src: url(/fonts/Pretendard/woff2/Pretendard-Thin.woff2) format('woff2'), url(/fonts/Pretendard/woff/Pretendard-Thin.woff) format('woff');
}

@font-face {
  font-family: 'Museo Sans';
  font-weight: 300;
  font-display: swap;
  src: url(/fonts/MuseoSans/MuseoSans-300.otf) format('opentype');
}

@font-face {
  font-family: 'Museo Sans';
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/MuseoSans/MuseoSans_500.otf) format('opentype');
}

@font-face {
  font-family: 'Museo Sans';
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/MuseoSans/MuseoSans_700.otf) format('opentype');
}


/* ========== Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
  line-break: strict;
}

:root {
  /* ========== Color Palette ========== */
  
  /* Primary Colors */
  --color-primary: #4FBDB9;
  --color-primary-light: #7BCECB;
  --color-primary-dark: #3A8B88;
  
  /* Neutral Colors */
  --color-neutral-100: #F7F8F9;
  --color-neutral-200: #E8EBED;
  --color-neutral-300: #C9CDD2;
  --color-neutral-400: #9EA4A9;
  --color-neutral-500: #848A8F;
  --color-neutral-600: #6B7175;
  --color-neutral-700: #53585D;
  --color-neutral-800: #262B2F;
  --color-neutral-900: #12171A;
  
  /* Status Colors */
  --color-success: #4CAF50;
  --color-warning: #FFC107;
  --color-error: #F44336;
  --color-info: #2196F3;
  
  /* Background Colors */
  --color-bg-primary: var(--color-neutral-100);
  --color-bg-secondary: #F8F9FA;
  --color-bg-tertiary: #E9ECEF;
  --color-bg-dark: #262B2F;
  
  /* Text Colors */
  --color-text-primary: var(--color-neutral-900);
  --color-text-secondary: var(--color-neutral-700);
  --color-text-tertiary: var(--color-neutral-600);
  --color-text-on-primary: #FFFFFF;
  
  /* Border Colors */
  --color-border-light: rgba(132, 138, 143, 0.2);
  --color-border-medium: rgba(132, 138, 143, 0.4);
  --color-border-dark: rgba(132, 138, 143, 0.6);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #F0F8FF 0%, #E8F4F8 100%);
  --gradient-overlay: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-family-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-display: 'Museo Sans', var(--font-family-sans);
  
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  
  /* Spacing */
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.25rem;    /* 20px */
  --space-6: 1.5rem;     /* 24px */
  --space-8: 2rem;       /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;  /* 4px */
  --radius-md: 0.5rem;   /* 8px */
  --radius-lg: 1rem;     /* 16px */
  --radius-xl: 1.5rem;   /* 24px */
  --radius-full: 9999px; /* Full circle */
  
  /* Transitions */
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
}

/* ========== Base Elements ========== */
body {
  font-family: var(--font-family-sans);
  letter-spacing: -0.01em;
  background-color: white;
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-display: swap;
}

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

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

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  margin-bottom: 0;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  font-size: var(--text-base);
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-16) 0;
}

/* ========== Header & Navigation ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background-color: var(--color-bg-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-10);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-border-light);
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 100%;
  font-family: var(--font-family-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text-on-primary);
  text-transform: uppercase;
  text-decoration: none;
}

.logo-img {
  height: 60px; /* Adjust based on your logo's aspect ratio */
  width: auto;
  object-fit: contain;
}

.mobile-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.mobile-logo .logo-img {
  height: 37px;
}

.mobile-logo .logo-sub {
  height: 7px;
}

/* Ensure the logo doesn't get too large on smaller screens */
@media (max-width: 768px) {
  .logo-img {
      max-height: 50px;
  }
}

.nav {
  display: flex;
  gap: var(--space-10);
  align-items: center;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  gap: var(--space-10);
  list-style: none;
}

.nav a {
  font-family: var(--font-family-display);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-on-primary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition-default);
}

.nav a:hover {
  color: var(--color-primary);
}

.nav a.active {
    color: var(--color-neutral-600);
}

.main {
  background-color: white;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: var(--transition-default);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

.logo {
  font-family: 'Museo Sans', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
  z-index: 1001;
}

.contact-btn {
  padding: var(--space-3) 14px;
  border: 1px solid var(--color-neutral-700);
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-family-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semi-bold);
  line-height: 100%;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.contact-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

/* Mobile Header */
.mobile-header {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  height: 92px;
  background-color: var(--color-bg-dark);
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.mobile-logo {
  font-family: 'Museo Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
}

.menu-toggle {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.menu-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s;
}

.menu-toggle.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 3px);
}

.menu-toggle.active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -3px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  background-color: var(--color-bg-dark);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  padding: 55px var(--space-5);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  text-align: center;
}

.mobile-nav a {
  font-family: var(--font-family-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-regular);
  line-height: 100%;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

/* ========== Footer ========== */
/* Footer */
.footer {
  background-color: var(--color-neutral-700);
  color: #FFFFFF;
  padding: 40px 0;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Museo Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 12px;
  color: #C9CDD2;
  line-height: 1.5;
}

.footer-info {
  display: flex;
  gap: 80px;
}

.footer-section {
  display: flex;
}

.footer-left {
  display: flex;
}

.footer-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  color: #FFFFFF;
  min-width: 60px;
}

.footer-text {
  font-size: var(--text-xs);
  color: white;
  width: 100px;
}

.footer-desc-text {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-regular);
  color: var(--color-neutral-300);
}

.footer-details {
  font-size: var(--text-xs);
  color: var(--color-neutral-300);
  margin-top: var(--space-1);
}

.footer-links {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-5);
}

.footer-links a {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: white;
  text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-disclaimer {
  display: flex;
  gap: var(--space-5);
  font-size: 11px;
  color: var(--color-neutral-500);
  line-height: 1.5;
}

.copyright {
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--color-neutral-300);
  font-weight: var(--font-weight-regular);
}

.footer-info {
  display: flex;
  gap: var(--space-20);
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.footer-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #4FBDB9;
}

.footer-disclaimers {
  display: flex;
  gap: 20px;
  align-items: center;
}

.disclaimer {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: #848A8F;
}

.company-info-section {
  width: 100px;
}

/* Floating Menu */
.floating-menu {
  position: fixed;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: none;
  flex-direction: column;
}

@media (max-width: 1440px) {
  .floating-menu {
    right: 50px;
  }
}


.floating-menu.active {
  display: flex;
}

.floating-btn {
  width: 240px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.floating-btn:hover::after {
  transform: translateY(0);
}

.floating-btn.primary {
  background: var(--color-primary);
  color: var(--color-neutral-900);
}

.floating-btn.secondary {
  background: var(--color-neutral-800);
  color: white;
}

.floating-btn-label {
  font-family: 'Museo Sans', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
}

.floating-btn.secondary .floating-btn-label {
  color: var(--color-primary);
}

.floating-btn-text {
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  line-break: auto;
}

.floating-close-btn {
  display: flex;
  justify-content: flex-end;
}

.floating-close-btn a {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-color: var(--color-neutral-800);
}

.floating-close-btn a::before,
.floating-close-btn a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: white;
}

.floating-close-btn a::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.floating-close-btn a::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 768px) {
  .footer {
      padding: 50px 0 60px;
  }

  .footer-container {
      padding: 0 20px;
  }

  .footer-main {
      flex-direction: column;
      gap: 30px;
  }

  .footer-info {
      flex-direction: column;
      gap: 0;
  }

  .footer-section {
    flex-direction: column;
    margin-bottom: 8px;
  }

  .footer-desc-text {
    padding-left: 60px;
  }

  .info-details {
      margin-left: 0;
      margin-top: 5px;
  }

  .floating-menu {
    right: 20px;
    top: auto;
    bottom: 30px;
    transform: none;
  }

  .floating-btn {
      width: 68px;
      height: 60px;
      font-size: 12px;
  }

  .floating-btn-label {
      font-size: 8px;
  }

  .floating-btn-text {
      font-size: 12px;
  }

  .floating-close-btn a {
    width: 18px;
    height: 18px;
  }
  
  .floating-close-btn a::before,
  .floating-close-btn a::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 1px;
      background-color: white;
  }
  
  .floating-close-btn a::before {
      transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .floating-close-btn a::after {
      transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* ========== Utility Classes ========== */

.hidden {
    display: none;
}

/* Text Colors */
.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-tertiary { color: var(--color-text-tertiary); }
.text-on-primary { color: var(--color-text-on-primary); }

/* Background Colors */
.bg-primary { background-color: var(--color-bg-primary); }
.bg-secondary { background-color: var(--color-bg-secondary); }
.bg-tertiary { background-color: var(--color-bg-tertiary); }

/* Spacing Utilities */
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }

/* Flex Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-10 { gap: var(--space-10); }

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;    /* 36px */
    --text-4xl: 2rem;       /* 32px */
    --text-3xl: 1.75rem;    /* 28px */
    --text-2xl: 1.5rem;     /* 24px */
  }
  
  .header {
    padding: var(--space-5);
    height: auto;
    display: none;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .mobile-header {
    display: flex;
  }

  .footer-content {
    padding: 0 var(--space-5);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 50px;
  }

  .footer-disclaimer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    order: 1;
    letter-spacing: 0;
  }

  .footer-copy {
    order: 2;
    letter-spacing: 0;
  }
    
}

/* ========== Typography ========== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

/* ========== Buttons ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: var(--transition-default);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

/* ========== Utility Classes ========== */

/* Text Colors */
.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-tertiary { color: var(--color-text-tertiary); }
.text-on-primary { color: var(--color-text-on-primary); }

/* Background Colors */
.bg-primary { background-color: var(--color-bg-primary); }
.bg-secondary { background-color: var(--color-bg-secondary); }
.bg-tertiary { background-color: var(--color-bg-tertiary); }

/* Spacing Utilities */
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }

/* Flex Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-10 { gap: var(--space-10); }

.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }

.bottom-link {
  margin: 120px auto;
  max-width: 1200px;
  width: 100%;
  cursor: pointer;
}

.bottom-section {
  position: relative;
  display: flex;
  max-height: 200px;
  overflow: hidden;
  background-color: var(--color-neutral-100);
}

.bottom-image {
  width: 50%;
}

.bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bottom-content {
  width: 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bottom-label {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-neutral-800);
  line-height: 1.8;
}

.bottom-title {
  font-family: 'Museo Sans', sans-serif;
  font-size: 42px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-neutral-900);
  letter-spacing: -0.48px;
  line-height: 1.3;
}

.bottom-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
}

@media (max-width: 768px) {
  .bottom-link {
    padding: 0 20px;
  }
  .bottom-section {
    margin: 120px 0 60px;
    flex-direction: column;
    max-height: fit-content;
    gap: 0;
    align-items: stretch;
  }

  .bottom-image {
      width: 100%;
  }

  .bottom-image img {
      width: 100%;
      height: 180px;
      object-fit: cover;
  }

  .bottom-content {
      padding: var(--space-10) var(--space-5);
      position: relative;
      width: 100%;
  }

  .bottom-title {
      font-size: 30px;
      line-height: 1.3;
      padding-right: 60px;
      overflow-wrap: break-word;
  }

  .bottom-icon {
      right: 20px;
  }
}