/* Haje Website Styles - Based on Haje App Design System */

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Haje Design System */
:root {
  /* Light theme colors (matching Haje app) */
  --haje-background: #FBFAF7;
  --haje-card-background: #F6F5F1;
  --haje-text: #2C2716;
  --haje-text-secondary: rgba(44, 39, 22, 0.62);
  --haje-primary: #004830;
  --haje-secondary: #8BA39A;
  --haje-accent: #2F8F5B;
  --haje-button-text: #FBFAF7;
  --haje-white: #FBFAF7;
  --haje-shadow: rgba(0, 0, 0, 0.1);
  --haje-shadow-light: rgba(0, 0, 0, 0.05);
  
  /* Dynamic sizing variables */
  --header-height: 80px;
  --footer-height: 60px;
  --available-height: 100vh;
  --available-width: 100vw;
  --content-padding: 20px;
  
  /* Dynamic scaling variables */
  --content-scale: 1;
  --text-scale: 1;
  --title-scale: 1;
  --spacing-scale: 1;
}

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

/* Additional reset for video and image elements */
video, img {
  margin: 0;
  padding: 0;
  display: block;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--haje-background);
  color: var(--haje-text);
  line-height: 1.6;
  overflow-x: hidden;
  /* Hide scrollbar for webkit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Header styles - Overlay */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 1000; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--haje-primary);
}

.logo-icon {
  width: 180px;
  height: 50px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--haje-text);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
}

nav ul li a:hover {
  color: var(--haje-primary);
  background: transparent;
  transform: translateY(-2px);
}

nav ul li a.active {
  color: var(--haje-primary);
  font-weight: 600;
  background: transparent;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; 
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  bottom: auto;
  top: calc(35% + var(--header-height));
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-overlay .cta {
  display: none;
}

.hero h1 {
  font-size: calc(clamp(2rem, 5vw, 3.5rem) * var(--text-scale));
  font-weight: 700;
  color: var(--haje-white);
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.7),
    -1px -1px 3px rgba(0, 0, 0, 0.7),
    1px -1px 3px rgba(0, 0, 0, 0.7),
    -1px 1px 3px rgba(0, 0, 0, 0.7);
  margin-bottom: calc(clamp(20px, 4vh, 40px) * var(--spacing-scale));
  line-height: 1.2;
}

.hero p {
  font-size: calc(clamp(1rem, 2.5vw, 1.6rem) * var(--text-scale));
  font-weight: 400;
  max-width: 700px;
  color: var(--haje-white);
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.7),
    -1px -1px 3px rgba(0, 0, 0, 0.7),
    1px -1px 3px rgba(0, 0, 0, 0.7),
    -1px 1px 3px rgba(0, 0, 0, 0.7);
  margin-bottom: calc(clamp(15px, 3vh, 30px) * var(--spacing-scale));
  line-height: 1.6;
}

.hero-highlight {
  font-size: calc(clamp(1.5rem, 3.5vw, 2.2rem) * var(--text-scale)) !important;
  font-weight: 600 !important;
  margin-bottom: calc(clamp(10px, 2vh, 15px) * var(--spacing-scale)) !important;
}

.hero p:last-of-type {
  margin-bottom: calc(clamp(15px, 3vh, 30px) * var(--spacing-scale));
  font-size: calc(clamp(0.9rem, 2vw, 1.3rem) * var(--text-scale));
  opacity: 0.9;
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.7),
    -1px -1px 3px rgba(0, 0, 0, 0.7),
    1px -1px 3px rgba(0, 0, 0, 0.7),
    -1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero .cta {
  background: var(--haje-accent);
  color: var(--haje-button-text);
  padding: calc(clamp(10px, 2vh, 15px) * var(--spacing-scale)) calc(clamp(25px, 4vw, 40px) * var(--spacing-scale));
  border: none;
  cursor: pointer;
  font-size: calc(clamp(1rem, 2vw, 1.2rem) * var(--text-scale));
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 143, 91, 0.3);
  font-family: 'Poppins', sans-serif;
}

.hero-bottom-cta {
  position: absolute;
  bottom: calc(clamp(60px, 10vh, 100px) * var(--spacing-scale));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: calc(clamp(10px, 2vh, 15px) * var(--spacing-scale));
  align-items: center;
}

.demo-btn {
  background: transparent !important;
  border: 2px solid var(--haje-white) !important;
  color: var(--haje-white) !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
}

.demo-btn:hover {
  background: var(--haje-white) !important;
  color: var(--haje-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

.hero .cta:hover {
  background-color: var(--haje-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 72, 48, 0.4);
}

.hero-videos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  margin: 0;
  padding: 0;
  display: block;
}

/* About section */
.about-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--haje-background);
  margin: 0;
  padding: 0;
}

.about-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
  margin: 0;
  padding: 0;
}

.about-image {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.8) contrast(1.2);
  display: block;
  background-color: #333;
  opacity: 1;
  margin: 0;
  padding: 0;
}

.about-text-content {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(60px + var(--header-height)) 60px 60px 60px;
  background: transparent;
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: stretch;
}

.about-title {
  font-size: calc(clamp(1.8rem, 4vw, 2.8rem) * var(--title-scale));
  font-weight: 700;
  color: var(--haje-primary);
  margin-bottom: calc(clamp(30px, 6vh, 60px) * var(--spacing-scale));
  font-family: 'Poppins', serif;
  letter-spacing: 1px;
}

.vision-section,
.mission-section {
  margin-bottom: calc(clamp(20px, 4vh, 40px) * var(--spacing-scale));
}

.section-heading {
  font-size: calc(clamp(1rem, 2vw, 1.2rem) * var(--text-scale));
  font-weight: 600;
  color: var(--haje-primary);
  margin-bottom: calc(clamp(10px, 2vh, 15px) * var(--spacing-scale));
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-text {
  font-size: calc(clamp(0.9rem, 1.8vw, 1.0rem) * var(--text-scale));
  font-weight: 400;
  color: var(--haje-text);
  line-height: 1.6;
  max-width: 90%;
}

/* Services section */
#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  height: 100vh;
  background: linear-gradient(135deg, var(--haje-card-background) 0%, var(--haje-background) 100%);
  padding: calc(var(--header-height) + 20px) 5% 20px 5%;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.services-container {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  width: 100%;
  gap: 10px;
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 0;
}

.services-left,
.services-right {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0px 2px;
  background: transparent;
  position: relative;
  z-index: 3;
}

.services-center {
  flex: 1.2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 2px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.services-image {
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 1;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.8) contrast(1.2);
  display: block;
  min-height: 200px;
  opacity: 1;
  border-radius: 15px;
}

#services h2 {
  font-size: calc(clamp(1.8rem, 4vw, 2.5rem) * var(--title-scale));
  font-weight: 700;
  color: var(--haje-primary);
  margin-bottom: calc(clamp(10px, 2vh, 15px) * var(--spacing-scale));
  margin-top: calc(clamp(20px, 4vh, 40px) * var(--spacing-scale));
  text-align: center;
}

.services-subtitle {
  font-size: calc(clamp(1rem, 2.2vw, 1.4rem) * var(--text-scale));
  font-weight: 400;
  color: var(--haje-text-secondary);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  margin-bottom: calc(clamp(20px, 4vh, 40px) * var(--spacing-scale));
  margin-top: 0;
  text-align: center;
  max-width: 100%;
  width: 100%;
  line-height: 1.6;
}

.service-section {
  padding: 8px !important;
  background: rgba(251, 250, 247, 0.95) !important;
  border-radius: 15px !important;
  border: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.service-section:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.service-heading {
  font-size: calc(clamp(1rem, 2vw, 1.2rem) * var(--text-scale)) !important;
  font-weight: 600 !important;
  color: var(--haje-primary) !important;
  margin-bottom: calc(5px * var(--spacing-scale)) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  text-align: left !important;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: calc(clamp(0.85rem, 1.6vw, 1.0rem) * var(--text-scale)) !important;
  font-weight: 400 !important;
  color: var(--haje-text) !important;
  line-height: 1.3 !important;
  margin-bottom: calc(2px * var(--spacing-scale)) !important;
  padding-left: 0 !important;
  position: relative !important;
  text-align: left !important;
}

/* How It Works section */
#how-it-works {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--haje-card-background) 0%, var(--haje-background) 100%);
  padding: calc(var(--header-height) + 20px) 10% 20px 10%;
  position: relative;
  margin: 0;
}

#how-it-works h2 {
  font-size: calc(clamp(1.8rem, 4vw, 2.5rem) * var(--title-scale));
  font-weight: 700;
  color: var(--haje-primary);
  margin-bottom: calc(clamp(15px, 3vh, 20px) * var(--spacing-scale));
}

.how-it-works-subtitle {
  font-size: calc(clamp(1rem, 2vw, 1.2rem) * var(--text-scale));
  font-weight: 400;
  color: var(--haje-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto calc(clamp(30px, 6vh, 50px) * var(--spacing-scale)) auto;
  line-height: 1.6;
}

.how-it-works-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: calc(clamp(15px, 2vw, 20px) * var(--spacing-scale));
  text-align: center;
  margin-top: calc(clamp(20px, 4vh, 30px) * var(--spacing-scale));
  max-width: 1400px;
  width: 100%;
  padding: calc(clamp(15px, 3vh, 20px) * var(--spacing-scale)) 0;
  align-self: center;
}

/* Step boxes */
.step-box {
  background: transparent;
  padding: clamp(15px, 2vh, 20px) clamp(10px, 1.5vw, 15px);
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  position: relative;
}

.step-box:hover {
  transform: translateY(-5px);
}

/* Step number */
.step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: clamp(25px, 3vw, 30px);
  height: clamp(25px, 3vw, 30px);
  background: var(--haje-primary);
  color: var(--haje-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 600;
  z-index: 2;
}

/* Step visual container */
.step-visual {
  width: clamp(80px, 12vw, 120px);
  height: clamp(80px, 12vw, 120px);
  background: #E5E5E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(15px, 2vh, 20px);
  position: relative;
  overflow: hidden;
}

/* Step icons */
.step-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Step title */
.step-title {
  font-size: calc(clamp(0.9rem, 1.8vw, 1.1rem) * var(--text-scale));
  font-weight: 600;
  color: var(--haje-text);
  margin-bottom: calc(clamp(8px, 1.5vh, 10px) * var(--spacing-scale));
  line-height: 1.3;
}

/* Step description */
.step-description {
  font-size: calc(clamp(0.8rem, 1.5vw, 0.9rem) * var(--text-scale));
  font-weight: 400;
  color: var(--haje-text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Footer styles - not fixed, flows with content */
footer {
  width: 100%;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--haje-primary);
  color: var(--haje-white);
  font-weight: 500;
  margin-top: 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* 세로가 더 긴 화면 (모바일, 세로 모드) */
@media (max-height: 600px) and (orientation: landscape) {
  .about-container {
    flex-direction: row;
  }
  
  .about-image {
    position: relative;
    height: 100%;
    width: 50%;
    flex: 0 0 50%;
  }
  
  .about-text-content {
    position: relative;
    height: 100%;
    width: 50%;
    flex: 0 0 50%;
    background: var(--haje-background);
    backdrop-filter: none;
  }

  .services-container {
    flex-direction: row;
    gap: 20px;
  }
  
  .services-left,
  .services-right {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px 15px;
  }

  .services-center {
    flex: 1.2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    background: var(--haje-background);
    backdrop-filter: none;
  }

  .services-image {
    width: 100%;
    height: 50%;
  }
}


/* 모바일 (768px 미만) */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  
  .logo-icon {
    width: 120px;
    height: 40px;
  }
  
  nav ul {
    gap: 15px;
    margin-right: 0;
  }
  
  nav ul li a {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  nav ul li a.active {
    color: var(--haje-primary);
    font-weight: 600;
    background: transparent;
  }

  .hero-overlay {
    top: calc(25% + var(--header-height)) !important;
    max-width: 90% !important;
    padding: 0 15px !important;
  }

  .hero h1 {
    font-size: 2.2rem !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
  }

  .hero p {
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
  }

  .hero p:last-of-type {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
  }

  .hero-bottom-cta {
    bottom: 60px !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .about-section {
    background-color: var(--haje-background) !important;
    background-image: url('../images/about.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative !important;
    min-height: 100vh !important;
  }

  .about-container {
    display: block !important;
    height: 100% !important;
    width: 100% !important;
  }

  .about-image {
    display: none !important;
  }

  .about-text-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    padding: 30px !important;
    background: rgba(251, 250, 247, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    flex: none !important;
    max-width: none !important;
    min-width: 100% !important;
  }

  .about-title {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 700;
  }

  .section-heading {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    font-weight: 600;
  }

  .section-text {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  #services {
    background-color: var(--haje-background) !important;
    background-image: url('../images/services.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative !important;
  }

  .services-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    position: relative !important;
    height: calc(100vh - var(--header-height)) !important;
    width: 100% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    align-content: center !important;
    overflow: hidden !important;
  }

  .services-center {
    display: none !important;
  }

  .services-left {
    display: contents !important;
  }

  .services-right {
    display: none !important;
  }

  .service-section {
    background: rgba(251, 250, 247, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    padding: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .service-section:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .service-section.mobile-only {
    display: block !important;
  }

  #how-it-works {
    min-height: auto !important;
    height: auto !important;
    padding: calc(var(--header-height) + 20px) 10% 40px 10% !important;
    overflow-y: visible !important;
  }

  .how-it-works-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* iPhone XR and similar devices (414px width) */
@media (max-width: 414px) {
  header {
    padding: 8px 12px;
  }
  
  .logo-icon {
    width: 90px;
    height: 30px;
  }
  
  nav ul {
    gap: 6px;
    margin-right: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  
  nav ul li a {
    font-size: 11px;
    padding: 3px 6px;
    white-space: nowrap;
    min-width: auto;
  }
  
  nav ul li a.active {
    color: var(--haje-primary);
    font-weight: 600;
    background: transparent;
  }
}

/* Very small screens (375px and below) */
@media (max-width: 375px) {
  header {
    padding: 6px 10px;
  }
  
  .logo-icon {
    width: 80px;
    height: 28px;
  }
  
  nav ul {
    gap: 4px;
    margin-right: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  
  nav ul li a {
    font-size: 10px;
    padding: 2px 4px;
    white-space: nowrap;
    min-width: auto;
  }
  
  nav ul li a.active {
    color: var(--haje-primary);
    font-weight: 600;
    background: transparent;
  }

  .hero-overlay {
    top: calc(20% + var(--header-height)) !important;
    max-width: 95% !important;
    padding: 0 10px !important;
  }

  .hero h1 {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
    line-height: 1.1 !important;
  }

  .hero p {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
  }

  .hero p:last-of-type {
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
  }

  .hero-bottom-cta {
    bottom: 50px !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .about-section {
    background-color: var(--haje-background) !important;
    background-image: url('../images/about.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative !important;
    min-height: 100vh !important;
  }

  .about-container {
    display: block !important;
    position: relative !important;
    height: 100% !important;
    width: 100% !important;
  }

  .about-image {
    display: none !important;
  }

  .about-text-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    padding: 15px !important;
    background: rgba(251, 250, 247, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    flex: none !important;
    max-width: none !important;
    min-width: 100% !important;
  }

  .about-title {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
    color: var(--haje-primary);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 700;
  }

  .section-heading {
    font-size: 0.9rem !important;
    color: var(--haje-primary);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }

  .section-text {
    font-size: 0.8rem !important;
    color: var(--haje-text);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    line-height: 1.4 !important;
  }

  .hero-highlight {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
  }

  #services {
    background-color: var(--haje-background) !important;
    background-image: url('../images/services.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative !important;
  }

  .services-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    position: relative !important;
    height: calc(100vh - var(--header-height)) !important;
    width: 100% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    align-content: center !important;
    overflow: hidden !important;
  }

  .services-center {
    display: none !important;
  }

  .services-left {
    display: contents !important;
  }

  .services-right {
    display: none !important;
  }

  .service-section {
    background: rgba(251, 250, 247, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    padding: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .service-section:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .service-section.mobile-only {
    display: block !important;
  }

  #services h2 {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--haje-primary);
    margin-bottom: 8px !important;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  }

  .services-subtitle {
    font-size: 0.9rem !important;
    font-weight: 400;
    color: var(--haje-text-secondary);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
    line-height: 1.3 !important;
  }

  .service-section {
    padding: 8px !important;
    background: rgba(251, 250, 247, 0.95) !important;
    border-radius: 15px !important;
    border: none !important;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .service-section:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .service-heading {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--haje-primary) !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: left !important;
  }

  .service-list li {
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    color: var(--haje-text) !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    padding-left: 0 !important;
    text-align: left !important;
    line-height: 1.3 !important;
    margin-bottom: 3px !important;
  }

  #how-it-works h2 {
    font-size: 1.3rem !important;
  }

  #how-it-works {
    min-height: auto !important;
    height: auto !important;
    padding: calc(var(--header-height) + 15px) 5% 30px 5% !important;
    overflow-y: visible !important;
  }

  .how-it-works-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .how-it-works-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
    padding: 0 10px !important;
  }

  .step-visual {
    width: 60px !important;
    height: 60px !important;
  }

  .step-title {
    font-size: 0.8rem !important;
    margin-bottom: 5px !important;
  }

  .step-description {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }

  .arrow {
    transform: rotate(90deg);
    font-size: 2rem;
  }

  .step-box {
    width: 100%;
    max-width: 300px;
  }
}

/* 데스크톱에서 버튼들 가로 배치 */
@media (min-width: 768px) {
  .hero-bottom-cta {
    flex-direction: row;
    gap: 20px;
  }

  /* 데스크톱에서 About 섹션 좌우 2열 배치 */
  .about-container {
    flex-direction: row !important;
  }

  .about-image {
    position: relative !important;
    height: 100% !important;
    width: 50% !important;
    flex: 0 0 50% !important;
  }

  .about-text-content {
    position: relative !important;
    height: 100% !important;
    width: 50% !important;
    flex: 0 0 50% !important;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 60px !important;
  }

  /* 데스크톱에서 Services 섹션 3열 배치 */
  .services-container {
    flex-direction: row !important;
    gap: 20px !important;
  }

  .services-left,
  .services-right {
    flex: 1 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 15px !important;
    padding: 5px 10px !important;
    position: relative !important;
    z-index: 3 !important;
    background: transparent !important;
  }

  .services-center {
    flex: 1.2 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 5px 10px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .services-image {
    width: 100% !important;
    height: 60% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .services-left .service-section.mobile-only {
    display: none !important;
  }

  .services-right {
    display: flex !important;
  }

  /* 모든 서비스 카드 스타일 강제 통일 */
  .services-left .service-section,
  .services-right .service-section {
    padding: 8px !important;
    background: rgba(251, 250, 247, 0.95) !important;
    border-radius: 15px !important;
    border: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .services-left .service-section:hover,
  .services-right .service-section:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .services-left .service-heading,
  .services-right .service-heading {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--haje-primary) !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-align: left !important;
  }

  .services-left .service-list li,
  .services-right .service-list li {
    font-size: 1.0rem !important;
    font-weight: 400 !important;
    color: var(--haje-text) !important;
    line-height: 1.3 !important;
    margin-bottom: 2px !important;
    padding-left: 0 !important;
    position: relative !important;
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 120px;
    height: 60px;
  }

  .hero-overlay {
    top: calc(30% + var(--header-height)) !important;
    max-width: 95% !important;
    padding: 0 10px !important;
  }

  .hero h1 {
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
  }

  .hero p {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
  }

  .hero p:last-of-type {
    font-size: 0.85rem !important;
    margin-bottom: 12px !important;
  }

  .hero-bottom-cta {
    bottom: 80px !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .about-section {
    background-color: var(--haje-background) !important;
    background-image: url('../images/about.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative !important;
    min-height: 100vh !important;
  }

  .about-container {
    display: block !important;
    height: 100% !important;
    width: 100% !important;
  }

  .about-image {
    display: none !important;
  }

  .about-text-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    padding: 20px !important;
    background: rgba(251, 250, 247, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    flex: none !important;
    max-width: none !important;
    min-width: 100% !important;
  }

  .about-title {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 700;
  }

  .section-heading {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    font-weight: 600;
  }

  .section-text {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  #services {
    background-color: var(--haje-background) !important;
    background-image: url('../images/services.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative !important;
  }

  .services-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    position: relative !important;
    height: calc(100vh - var(--header-height)) !important;
    width: 100% !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    align-content: center !important;
    overflow: hidden !important;
  }

  .services-center {
    display: none !important;
  }

  .services-left {
    display: contents !important;
  }

  .services-right {
    display: none !important;
  }

  .service-section {
    background: rgba(251, 250, 247, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    padding: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .service-section:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .service-section.mobile-only {
    display: block !important;
  }
}

/* iPhone 12 and similar devices (390px width) */
@media (max-width: 390px) {
  .hero-overlay {
    top: calc(35% + var(--header-height)) !important;
    max-width: 98% !important;
    padding: 0 8px !important;
  }

  .hero h1 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
    line-height: 1.1 !important;
  }

  .hero p {
    font-size: 0.85rem !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }

  .hero p:last-of-type {
    font-size: 0.8rem !important;
    margin-bottom: 10px !important;
  }

  .hero-bottom-cta {
    bottom: 90px !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .about-section {
    background-color: var(--haje-background) !important;
    background-image: url('../images/about.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative !important;
    min-height: 100vh !important;
  }

  .about-container {
    display: block !important;
    position: relative !important;
    height: 100% !important;
    width: 100% !important;
  }

  .about-image {
    display: none !important;
  }

  .about-text-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    padding: 20px !important;
    background: rgba(251, 250, 247, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    flex: none !important;
    max-width: none !important;
    min-width: 100% !important;
  }

  .about-title {
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 700;
  }

  .section-heading {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    font-weight: 600;
  }

  .section-text {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  #services {
    background-color: var(--haje-background) !important;
    background-image: url('../images/services.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative !important;
  }

  .services-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    position: relative !important;
    height: calc(100vh - var(--header-height)) !important;
    width: 100% !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    align-content: center !important;
    overflow: hidden !important;
  }

  .services-center {
    display: none !important;
  }

  .services-left {
    display: contents !important;
  }

  .services-right {
    display: none !important;
  }

  .service-section {
    background: rgba(251, 250, 247, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    padding: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .service-section:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .service-section.mobile-only {
    display: block !important;
  }

  #services h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    margin-top: 0;
  }

  .services-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-top: 0;
  }

  #how-it-works h2 {
    font-size: 1.8rem;
  }

  .hero-highlight {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* Hide scrollbar for webkit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* Enable scroll snapping */
  scroll-snap-type: y mandatory;
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Ensure sections are properly positioned for scrolling */
section {
  scroll-margin-top: var(--header-height);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Footer scroll snap */
footer {
  scroll-margin-top: var(--header-height);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Improve scroll performance */
* {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

/* Main content */
main {
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Hide scrollbar for webkit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

main::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Section styles */
section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

/* Remove any gaps between sections */
section + section {
  margin-top: 0;
  padding-top: 0;
}

/* Specific rules to eliminate gap between hero and about sections */
.hero + .about-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure hero video container has no bottom margin/padding */
.hero-videos {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.hero-video {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: none !important;
}

/* Ensure about section has no top margin/padding */
.about-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

/* Ensure about image has no top margin/padding */
.about-image {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
  min-height: 0 !important;
}

.about-image img {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: none !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* Force complete elimination of any gaps */
.hero {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.about-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

/* Scroll indicator - 제거됨 */

/* Loading animation for better UX */
.hero-overlay {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Button hover effects */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta:hover::before {
  left: 100%;
}

/* Coming Soon 모달 스타일 */
.coming-soon-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.coming-soon-content {
  background: var(--haje-white);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.coming-soon-content h3 {
  color: var(--haje-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.coming-soon-content p {
  color: var(--haje-text);
  margin-bottom: 25px;
  line-height: 1.6;
}

.close-modal {
  background: var(--haje-accent);
  color: var(--haje-white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.close-modal:hover {
  background: var(--haje-primary);
  transform: translateY(-2px);
}

/* How It Works 반응형 디자인 */
@media (max-width: 1200px) {
  .how-it-works-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .how-it-works-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .how-it-works-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .step-visual {
    width: 100px;
    height: 100px;
  }
  
  .step-icon {
    width: 100%;
    height: 100%;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  #how-it-works {
    min-height: auto !important;
    height: auto !important;
    padding: calc(var(--header-height) + 20px) 5% 40px 5% !important;
    overflow-y: visible !important;
  }

  .how-it-works-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin-top: 20px !important;
    padding-bottom: 20px !important;
  }
  
  .how-it-works-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .step-visual {
    width: 80px;
    height: 80px;
  }
  
  .step-icon {
    width: 100%;
    height: 100%;
  }
  
  .step-title {
    font-size: 0.95rem;
  }
  
  .step-description {
    font-size: 0.8rem;
  }
}

/* iPad Air 최적화 */
@media (min-width: 820px) and (max-width: 833px) and (max-height: 1200px) {
  .about-section {
    height: 100vh;
    min-height: 100vh;
    padding: 0;
  }
  
  .about-container {
    padding: 15px;
    height: 100%;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .section-heading {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .section-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .vision-section,
  .mission-section {
    margin-bottom: 15px;
  }
}

/* iPad Pro 최적화 */
@media (min-width: 834px) and (max-width: 1024px) and (max-height: 1400px) {
  .about-section {
    height: 100vh;
    min-height: 100vh;
  }
  
  .about-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .section-heading {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .section-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .vision-section,
  .mission-section {
    margin-bottom: 20px;
  }
  
  #services {
    height: 100vh;
    min-height: 100vh;
    padding: calc(var(--header-height) + 10px) 5% 10px 5%;
  }
  
  .services-container {
    height: calc(100vh - var(--header-height) - 20px);
    max-height: calc(100vh - var(--header-height) - 20px);
    gap: 8px;
  }
  
  #services h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    margin-top: 5px;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .service-section {
    padding: 6px !important;
  }
  
  .service-heading {
    font-size: 1rem !important;
    margin-bottom: 4px !important;
  }
  
  .service-list li {
    font-size: 0.9rem !important;
    margin-bottom: 2px !important;
    line-height: 1.3 !important;
  }
}

/* 1920x1200 해상도 최적화 */
@media (min-width: 1920px) and (max-height: 1200px) {
  #services {
    height: 100vh;
    min-height: 100vh;
    padding: calc(var(--header-height) + 15px) 5% 15px 5%;
  }
  
  .services-container {
    height: calc(100vh - var(--header-height) - 30px);
    max-height: calc(100vh - var(--header-height) - 30px);
  }
  
  #services h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  
  .services-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
}

/* 가로 < 세로인 데스크톱 (포트레이트 모드) */
@media (max-height: 600px) and (orientation: landscape) {
  .how-it-works-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .how-it-works-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .step-visual {
    width: 80px;
    height: 80px;
  }
  
  .step-icon {
    width: 100%;
    height: 100%;
  }
  
  .step-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  
  .step-description {
    font-size: 0.75rem;
  }
}

/* 추가적인 반응형 개선사항 */
@media (max-height: 500px) {
  .hero-overlay {
    top: 45% !important;
  }
  
  .hero-bottom-cta {
    bottom: 40px !important;
  }
  
  .about-text-content {
    padding: 30px !important;
  }
  
  .services-container {
    gap: 10px !important;
  }
  
  .service-section {
    padding: 5px !important;
  }
  
  .how-it-works-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  .step-visual {
    width: 60px !important;
    height: 60px !important;
  }
  
  .step-title {
    font-size: 0.8rem !important;
  }
  
  .step-description {
    font-size: 0.7rem !important;
  }
}

/* 매우 작은 화면 높이 */
@media (max-height: 400px) {
  .hero h1 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }
  
  .hero p {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
  }
  
  .hero-highlight {
    font-size: 1.2rem !important;
    margin-bottom: 5px !important;
  }
  
  .about-title {
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
  }
  
  .section-heading {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }
  
  .section-text {
    font-size: 0.8rem !important;
  }
  
  #services h2 {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
  }
  
  .services-subtitle {
    font-size: 0.9rem !important;
  }
  
  #how-it-works h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }
  
  .how-it-works-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
  }
}
