/* VoiceHana New Design CSS */

/* Color Variables */
:root {
  /* Background Colors */
  --vh-bg-dark: #004900;      /* 어두운 녹색 - 헤더 배경 */
  --vh-bg: #FFFFFF;           /* 흰색 - 메인 콘텐츠 */
  --vh-bg-light: #F6F7F8;     /* 아주 연한 회색 - 사이 콘텐츠 */
  --vh-footer: #E6E8EA;       /* 연한 회색 - 푸터 */
  
  /* Primary Colors */
  --vh-primary: #FBFF87;      /* 연한 녹색 - 버튼, 액센트 */
  --vh-secondary: #A5FF75;    /* 연한 형광 녹색 - 텍스트, 기능 버튼 */
  --vh-green: #19833C;        /* 녹색 */
  
  /* Gray Scale */
  --vh-gray-01: #B2B7BE;
  --vh-gray-02: #989FA8;
  --vh-gray-03: #7E8792;
  --vh-gray-04: #646F7C;
  --vh-black: #212529;
  
  /* Typography */
  --vh-font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  --vh-font-weight-light: 200;
  --vh-font-weight-regular: 300;
  --vh-font-weight-medium: 400;
  --vh-font-weight-semibold: 500;
  --vh-font-weight-bold: 700;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden; /* 가로 스크롤 방지 */
  max-width: 100%; /* 최대 너비 제한 */
}

body {
  font-family: var(--vh-font-family);
  color: var(--vh-black);
  background-color: var(--vh-bg);
  line-height: 1.6;
}

/* Main Layout Container */
.voicehana-layout {
  display: flex;
  min-height: 100vh;
  overflow-x: hidden; /* 가로 스크롤 방지 */
  max-width: 100%; /* 최대 너비 제한 */
}

/* Left Sidebar (Header) */
.voicehana-sidebar {
  width: 520px;
  background-color: var(--vh-bg-dark);
  color: white;
  padding: 40px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* Sidebar Header - Logo and CTA Button */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  min-height: 40px; /* 최소 높이 설정으로 중앙정렬 보장 */
}

/* Sidebar Logo */
.sidebar-logo img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1); /* SVG를 흰색으로 변경 */
}

/* Sidebar CTA Button Container */
.sidebar-cta-container {
  position: relative;
  display: inline-block;
}

/* Sidebar CTA Button */
.sidebar-cta {
  background-color: var(--vh-primary);
  color: var(--vh-black);
  border: none;
  padding: 13px 20px;
  border-radius: 4px;
  font-family: var(--vh-font-family);
  font-size: 18px;
  font-weight: var(--vh-font-weight-bold);
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-cta:hover {
  position: relative;
}

.sidebar-cta:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 73, 0, 0.15);
  border-radius: 4px;
  pointer-events: none;
}

/* Sidebar QR Code */
.sidebar-qr-code {
  position: absolute;
  top: 100%;
  right: 0; /* 오른쪽 끝을 CTA 버튼 끝과 맞춤 */
  background: white;
  border-radius: 8px;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 20px;
  width: 440px; /* 고정 너비 설정 */
  max-width: 440px;
  min-width: 440px; /* 최소 너비 보장 */
  display: none; /* 기본적으로 숨김 */
}

.sidebar-qr-code img {
  width: 440px; /* 고정 너비 설정 */
  max-width: 440px;
  min-width: 440px; /* 최소 너비 보장 */
  height: auto;
  display: block;
}

/* Show QR code on hover (desktop only) */
@media (min-width: 1200px) {
  .sidebar-qr-code {
    display: block !important; /* 데스크톱에서만 표시 */
    width: 440px !important; /* 강제로 440px 적용 */
    max-width: 440px !important; /* 강제로 440px 적용 */
    min-width: 440px !important; /* 강제로 440px 적용 */
  }
  
  .sidebar-qr-code img {
    width: 440px !important; /* 강제로 440px 적용 */
    max-width: 440px !important; /* 강제로 440px 적용 */
    min-width: 440px !important; /* 강제로 440px 적용 */
  }
  
  .sidebar-cta-container:hover .sidebar-qr-code {
    opacity: 1;
    visibility: visible;
  }
}

/* Sidebar Main Message */
.sidebar-main-message {
  font-size: 44px;
  font-weight: var(--vh-font-weight-semibold);
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 100px;
  flex: 1;
}

.sidebar-sub-message {
  font-size: 18px;
  font-weight: var(--vh-font-weight-medium);
  margin-bottom: 24px;
  color: var(--vh-secondary);
  opacity: 1;
}

/* Sidebar Navigation */
.sidebar-nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
  flex: 1;
}

.sidebar-nav-btn {
  background-color: var(--vh-secondary);
  color: var(--vh-black);
  border: none;
  height: 100px;
  border-radius: 4px;
  font-family: var(--vh-font-family);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex: 1;
  min-width: 0;
  opacity: 0.6;
}

.sidebar-nav-btn:hover {
  opacity: 1;
}

/* Sidebar Footer Links */
.sidebar-footer {
  margin-top: auto;
}

.sidebar-footer p {
  color: var(--vh-gray-02);
  font-size: 14px;
  font-weight: var(--vh-font-weight-medium);
  opacity: 0.7;
}


/* Main Content Area */
.voicehana-main {
  flex: 1;
  margin-left: 520px;
  background-color: var(--vh-bg);
  width: calc(100% - 520px);
  min-width: 0;
  overflow-x: hidden; /* 가로 스크롤 방지 */
}

/* Intro Section */
.intro-section {
  padding: 40px 40px;
  text-align: center;
}

/* About Section */
.about-section {
  padding: 80px 40px;
  text-align: center;
}

.about-section:nth-child(even) {
  background-color: var(--vh-bg-light);
}

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

.about-logo {
  margin-bottom: 24px;
}

.about-logo img {
  height: 28px;
  width: auto;
  margin: 0 auto;
}

.about-subtitle {
  font-size: 18px;
  font-weight: var(--vh-font-weight-medium);
  color: var(--vh-gray-03);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections (for other sections) */
.content-section {
  padding: 80px 60px;
}

.content-section:nth-child(even) {
  background-color: var(--vh-bg-light);
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 0px 20px 60px 20px;
  text-align: center;
}

/* CEO Message Section */
.ceo-message-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 80px 60px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-content {
  width: 100%;
  max-width: 800px;
}

/* 데스크탑/태블릿용 hero-text 스타일 (768px 이상) */
@media (min-width: 768px) {
  .hero-text {
    font-size: 0; /* 데스크탑/태블릿: 원본 텍스트 숨김 */
    line-height: 1.5;
    text-align: left;
    margin-top: 60px;
    position: relative;
  }
  
  /* 데스크탑/태블릿에서만 hero 텍스트를 3줄로 줄바꿈하여 표시 */
  .hero-text::before {
    content: "시니어들이 더 행복한 노년을 누릴 수 있도록\A자녀들이 부모님에 대해 안심할 수 있도록\A보이스하나가 함께합니다.";
    white-space: pre-line;
    display: block;
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
    color: var(--vh-black);
  }
}

/* 모바일용 hero-text 스타일 (767px 이하) */
@media (max-width: 767px) {
  .hero-text {
    font-size: 24px; /* 원본 텍스트 보이게 */
    line-height: 1.4;
    text-align: center;
    color: var(--vh-black);
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
  }
  
  .hero-text .hero-group {
    margin-bottom: 12px; /* 그룹 사이에 간격 */
  }
  
  .hero-text .hero-group:last-child {
    margin-bottom: 0; /* 마지막 그룹은 하단 마진 제거 */
  }
  
  .hero-text .hero-line {
    display: block; /* 줄바꿈을 위해 block으로 설정 */
    margin-bottom: 0; /* 줄 사이 마진 제거 */
  }
  
  /* 모바일에서 hero-section 상단 여백 추가 */
  .hero-section {
    padding-top: 30px !important; /* 모바일: 상단에 30px 여백 추가 (우선순위 높임) */
  }
}

.ceo-content {
  width: 100%;
  max-width: 800px;
}

.ceo-text {
  font-size: 18px;
  font-weight: var(--vh-font-weight-medium);
  line-height: 1.5;
  color: var(--vh-black);
  position: relative; /* 따옴표 위치 기준점 */
}



/* 모바일에서 CEO Message 위아래 따옴표 아이콘 추가 */
@media (max-width: 767px) {
  .ceo-text::before {
    content: "";
    background-image: url('../assets/img/ic_quote_before.svg');
    background-size: 32px 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    width: 32px;
    height: 32px;
    margin: 0 auto 20px auto;
    display: block;
    opacity: 0.15;
  }

  .ceo-text::after {
    content: "";
    background-image: url('../assets/img/ic_quote_after.svg');
    background-size: 32px 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    width: 32px;
    height: 32px;
    margin: 20px auto 0 auto;
    display: block;
    opacity: 0.15;
  }
}

/* 데스크탑/태블릿에서 CEO Message 위아래 SVG 따옴표 추가 */
@media (min-width: 768px) {
  .ceo-text::before {
    content: "" !important;
    background-image: url('../assets/img/ic_quote_before.svg') !important;
    background-size: 36px 36px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute !important;
    top: -20px !important;
    left: -20px !important;
    opacity: 0.15 !important;
    display: block !important;
    width: 36px !important;
    height: 36px !important;
  }

  .ceo-text::after {
    content: "" !important;
    background-image: url('../assets/img/ic_quote_after.svg') !important;
    background-size: 36px 36px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute !important;
    bottom: 20px !important;
    right: -20px !important;
    filter: brightness(0) saturate(100%) invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%) !important;
    opacity: 0.15 !important;
    display: block !important;
    width: 36px !important;
    height: 36px !important;
  }
}

.ai-quote {
  color: var(--vh-green);
}

.ceo-signature {
  color: var(--vh-gray-02);
}

/* Section Headers */
.section-header {
  font-size: 36px;
  font-weight: var(--vh-font-weight-medium);
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  font-size: 36px;
  font-weight: var(--vh-font-weight-medium);
  color: var(--vh-black);
  margin-bottom: 36px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 0px;
  width: 100%;
  justify-items: center;
}

/* 데스크탑과 태블릿에서 모바일 텍스트 숨김 */
@media (min-width: 768px) {
  .feature-mobile-text {
    display: none;
  }
}

.features-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}

.feature-image {
  margin-bottom: 20px;
  width: 100%;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

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

.feature-title {
  font-size: 24px;
  font-weight: var(--vh-font-weight-semibold);
  margin-bottom: 10px;
}

.feature-description {
  color: var(--vh-gray-03);
  line-height: 1.4;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--vh-bg-light);
  padding: 40px 0px 120px 0px;
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  padding: 0px 60px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: left;
}

.benefit-image {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 16px;
  overflow: hidden;
}



.benefit-image {
  position: relative;
}

.benefit-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.benefit-overlay-title {
  font-size: 30px;
  font-weight: var(--vh-font-weight-semibold);
  line-height: 1.4;
  color: white;
  margin: 0;
}

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

.benefit-content {
  text-align: left;
}


.benefit-content p {
  font-size: 16px;
  font-weight: var(--vh-font-weight-medium);
  color: var(--vh-black);
  line-height: 1.5;
  text-align: left;
  padding: 0px 20px;
}

/* Contact Section */
.contact-section {
  background-image: url('../assets/img/contact_img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: left;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  z-index: 1;
}

.contact-section > * {
  position: relative;
  z-index: 2;
}

.content-section:last-child {
  background-color: white;
}

.contact-title {
  font-size: 28px;
  font-weight: var(--vh-font-weight-semibold);
  line-height: 1.5;
}


.contact-btn {
  background-color: white;
  color: var(--vh-black);
  border: none;
  padding: 13px 20px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: var(--vh-font-weight-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  display: inline-block;
  margin-top: 20px;
}

.contact-btn:hover {
  position: relative;
}

.contact-btn:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  pointer-events: none;
}

/* Footer */
.voicehana-footer {
  background-color: #E6E8EA;
  padding: 40px 60px;
  margin-left: 520px;
  width: calc(100% - 520px);
  overflow-x: hidden; /* 가로 스크롤 방지 */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  align-self: flex-end;
}

.footer-logo svg {
  height: 24px;
  width: auto;
  fill: var(--vh-gray-02);
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  color: var(--vh-gray-03);
  margin-bottom: 4px;
}

.footer-link {
  color: var(--vh-gray-03);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--vh-black);
}

.kakao-link {
  color: var(--vh-gray-03);
  text-decoration: none;
  transition: all 0.2s ease;
}

.kakao-link:hover {
  color: var(--vh-black);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--vh-gray-03);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--vh-black);
}

/* Responsive Design */
@media (max-width: 1280px) {
  /* Tablet and below: stack vertically, sidebar not fixed */
  .voicehana-layout {
    flex-direction: column;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .voicehana-sidebar {
    width: 100%;
    min-width: 0; /* 모바일에서는 최소 너비 제거 */
    height: auto;
    position: relative;
    padding: 0; /* 패딩 제거하여 sticky가 정확히 작동하도록 */
    overflow: visible; /* sticky가 작동하도록 visible로 변경 */
  }
  .sidebar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--vh-bg-dark);
    padding: 20px 60px;
    margin: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  
  /* 스크롤 시 변경되는 스타일 */
  .sidebar-header.scrolled {
    background-color: white;
  }
  
  .sidebar-header.scrolled .sidebar-logo img {
    filter: none; /* 로고를 원래 색상으로 */
  }
  
  .sidebar-header.scrolled .sidebar-cta {
    background-color: var(--vh-bg-dark);
    color: white;
  }
  
  .sidebar-header.scrolled .sidebar-cta:hover {
    background-color: var(--vh-green);
  }
  .sidebar-main-message {
    padding: 80px 40px 0 40px; /* 헤더 높이만큼 상단 여백 추가, 좌우 40px로 통일 */
  }
  
  .sidebar-sub-message {
    padding: 0 40px;
  }
  
  .sidebar-nav {
    padding: 0 40px;
    margin-bottom: 80px;
  }
  
  .sidebar-footer {
    padding: 0 40px 40px 40px;
  }
  .voicehana-main {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .voicehana-footer {
    margin-left: 0;
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .features-text {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .benefits-container {
    width: 100%;
    padding: 0px 60px;
  }
  .ceo-message-section {
    width: 100%;
  }
  .about-section {
    width: 100%;
  }
  .intro-section {
    width: 100%;
  }
  

}

@media (max-width: 767px) {
  .voicehana-layout {
    flex-direction: column;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .voicehana-sidebar {
    width: 100%;
    min-width: 0; /* 모바일에서는 최소 너비 제거 */
    height: auto;
    position: relative;
    padding: 0; /* 패딩 제거하여 내부 요소가 전체 너비 사용 */
  }
  .sidebar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--vh-bg-dark);
    padding: 15px 20px;
    margin: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  
  /* 스크롤 시 변경되는 스타일 */
  .sidebar-header.scrolled {
    background-color: white;
  }
  
  .sidebar-header.scrolled .sidebar-logo img {
    filter: none; /* 로고를 원래 색상으로 */
  }
  
  .sidebar-header.scrolled .sidebar-cta {
    background-color: var(--vh-bg-dark);
    color: white;
  }
  
  .sidebar-header.scrolled .sidebar-cta:hover {
    background-color: var(--vh-green);
  }
  .sidebar-main-message {
    padding: 100px 20px 0 20px; /* 모바일: 헤더 높이만큼 상단 여백 추가, 좌우 20px */
    font-size: 40px; /* 모바일: 메인 텍스트 사이즈 축소 (기본 44px에서) */
    line-height: 1.4; /* 모바일: 줄간격 조정 */
  }
  
  .sidebar-sub-message {
    padding: 0 20px; /* 모바일: 좌우 20px */
    white-space: pre-line; /* 모바일: 줄바꿈 처리 방식 변경 */
    word-break: keep-all; /* 모바일: 한글 단어 단위로 줄바꿈 */
    line-height: 1.4; /* 모바일: 줄간격 조정 */
  }
  
  /* 모바일에서만 줄바꿈 처리 */
  .sidebar-sub-message::before {
    content: "하나는 가족이 안심할 수 있도록\A시니어를 케어합니다";
    white-space: pre-line;
    display: block;
  }
  
  /* 모바일에서 원본 텍스트 숨김 */
  .sidebar-sub-message {
    font-size: 0; /* 모바일: 원본 텍스트 숨김 */
  }
  
  .sidebar-sub-message::before {
    font-size: 18px; /* 모바일: 가상 요소 텍스트 크기 */
    color: var(--vh-secondary);
    opacity: 1;
  }
  
  .sidebar-nav {
    padding: 0 20px; /* 모바일: 좌우 20px */
    margin-bottom: 80px;
  }
  
  .sidebar-footer {
    padding: 0 20px 40px 20px; /* 모바일: 좌우 20px */
  }
  .voicehana-main {
    margin-left: 0;
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .voicehana-footer {
    margin-left: 0;
    width: 100%;
    padding: 20px; /* 모바일에서 패딩 20px로 설정 */
    align-items: left;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .features-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 40px; /* 각 feature 항목 간 간격 */
  }
  
  /* 모바일에서 features-text를 숨기고 features-grid만 사용 */
  .features-text {
    display: none;
  }
  
  .feature-image {
    width: 100% !important; /* 전체 너비 사용 */
    max-width: none; /* 최대 너비 제한 해제 */
    margin: 0 auto 20px auto; /* 중앙 정렬 및 하단 여백 */
    text-align: center;
  }
  
  .feature-image img {
    width: 240px !important; /* 이미지는 240px 고정 */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  /* 모바일에서 추가된 텍스트 스타일 */
  .feature-mobile-text {
    text-align: center;
    margin-top: 10px;
    width: 100%; /* 전체 너비 사용 */
    padding: 0 20px; /* 좌우 패딩 20px */
    box-sizing: border-box;
  }
  
  .feature-mobile-text .feature-title {
    font-size: 26px;
    font-weight: 600;
    list-style: 1.4;
    color: var(--vh-black);
    margin-bottom: 10px;
  }
  
  .feature-mobile-text .feature-description {
    font-size: 18px;
    color: var(--vh-gray-03);
    line-height: 1.4;
    margin-bottom: 0;
    white-space: normal; /* 자연스러운 줄바꿈 허용 */
    word-break: keep-all; /* 한글 단어 단위로 줄바꿈 */
  }
  .benefits-container {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 80px 20px 0px 20px;
    gap: 80px;
  }
  .ceo-message-section {
    width: 100%;
    padding: 80px 20px;
  }
  
  /* 모바일에서 CEO message 텍스트 자연스러운 줄바꿈 */
  .ceo-text {
    white-space: normal; /* 자연스러운 줄바꿈 허용 */
    word-break: keep-all; /* 한글 단어 단위로 줄바꿈 */
    word-wrap: break-word; /* 긴 단어 줄바꿈 */
    line-height: 1.4; /* 모바일에서 줄간격 조정 */
    text-align: center; /* 모바일에서 중앙 정렬 */
  }
  .about-section {
    width: 100%;
    padding: 80px 20px;
  }
  .intro-section {
    width: 100%;
    padding: 20px 20px;
  }
  
  .hero-section {
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 0; /* 패딩 제거하여 이미지가 전체 너비 사용 */
  }
  .footer-content {
    flex-direction: column;
    padding: 20px 0px 20px 0px ;
    gap: 20px;
    text-align: left;
    align-items: flex-start; /* 모든 요소를 왼쪽 정렬 */
  }
  
  /* 모바일에서 푸터 로고 왼쪽 정렬 */
  .footer-logo {
    align-self: flex-start;
  }
  
  /* 모바일에서 푸터 연락처 왼쪽 정렬 */
  .footer-contact {
    text-align: left;
    align-self: flex-start;
  }
  
  /* 모바일에서 푸터 링크 왼쪽 정렬 */
  .footer-links {
    justify-content: flex-start;
    align-self: flex-start;
  }
  
  /* 모바일에서 네비게이션 버튼 폰트 크기 조정 */
  .sidebar-nav-btn {
    font-size: 16px;
  }
  
  /* 모바일에서 Features 섹션 제목 줄바꿈 */
  .features-section .section-title {
    font-size: 0; /* 모바일: 원본 텍스트 숨김 */
  }
  
  .features-section .section-title::before {
    content: "AI 친구, 하나의\A주요 기능";
    white-space: pre-line;
    display: block;
    font-size: 32px; /* 모바일: 가상 요소 텍스트 크기 */
    font-weight: var(--vh-font-weight-medium);
    line-height: 1.4;
    color: var(--vh-black);
    text-align: center;
    margin-top: 40px;
  }
  
  /* 모바일에서 About 섹션 텍스트 줄바꿈 추가 */
  .about-subtitle {
    white-space: pre-line; /* 모바일: <br> 태그와 \A 줄바꿈 모두 지원 */
    font-size: 0; /* 모바일: 원본 텍스트 숨김 */
  }
  
  .about-subtitle::before {
    content: "보이스하나는 AI 기술을 활용해\A시니어들의 일상을 따뜻하고 편리하게\A바꿔가는 스타트업입니다.\A우리는 바쁜 현대를 살아가는 자녀들의\A어려움을 해결하고, 시니어들이 스스로\A삶을 주도하며 더욱 윤택한 일상을\A누릴 수 있도록 돕습니다.";
    white-space: pre-line;
    display: block;
    font-size: 18px; /* 모바일: 가상 요소 텍스트 크기 */
    font-weight: var(--vh-font-weight-medium);
    color: var(--vh-gray-03);
    line-height: 1.5;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  

  
  /* 추가 모바일 최적화 */ 
  .content-section {
    padding: 80px 20px;
    width: 100%;
  }
  
  .contact-section {
    margin: 0; /* 마진 제거 */
    padding: 20px !important; /* 모바일: 상하 패딩 제거, 좌우만 20px */
    width: 100%;
    min-height: 400px; /* 모바일: 최소 높이 설정 */
    box-sizing: border-box; /* 패딩을 너비에 포함 */
    justify-content: flex-end; /* 모바일: 텍스트와 버튼을 하단에 정렬 */
    align-items: flex-start; /* 모바일: 좌측 정렬 유지 */
  }
}



