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

:root {
  --font-primary: 'Noto Sans KR', 'Noto Sans KR', sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.6;
  --color-primary: #2c5530;
  --color-secondary: #f5e6d3;
  --color-accent: #fafafa;
  --color-text: #222;
  --max-width: 1200px;
  --spacing-base: 55px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 72px;
  --border-radius: 8px;
  --header-height: 90px;
  --hero-height: 550px;
  --section-padding: 60px;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-accent);
}

/* Container */
.mcontainer_7690 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.pheader_3701 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 14px 0;
}

.pheader_3701 .mcontainer_7690 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wlogo_7612 a {
  font-size: 13.4px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.pnav_7061 > ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.kmenuItem_5995 a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
}

.kmenuItem_5995 a:hover {
  color: var(--color-primary);
  background: var(--color-accent);
}

/* Dropdown Menu Styles */
.kmenuItem_5995.has-dropdown {
  position: relative;
}

.parent-menu .arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s;
}

.kmenuItem_5995.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none !important;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 200px;
  z-index: 1000;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Desktop: Show on hover */
@media (min-width: 769px) {
  .kmenuItem_5995.has-dropdown:hover .dropdown-menu {
    display: block !important;
  }
}

.dropdown-menu.active {
  display: block !important;
  animation: fadeInDown 0.3s;
}

.dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  padding-left: 24px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kmobileToggle_5872 {
  display: none !important;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Desktop: Always hide mobile toggle */
@media (min-width: 769px) {
  .kmobileToggle_5872 {
    display: none !important;
  }
}

.kmobileToggle_5872 span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  transition: var(--transition);
}

/* Hero Section */
.mhero_1958 {
  margin-top: 70px;
  position: relative;
}

.kheroImage_4117 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

.kheroImage_4117::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.kheroImage_4117 .mcontainer_7690 {
  position: relative;
  z-index: 1;
  color: white;
}

.pheroTitle_2822 {
  font-size: 61px;
  font-family: 'Malgun Gothic', var(--font-primary);
  font-weight: 700;
  color: #545f5f;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  display: inline-block;
}

.xheroSubtitle_5157 {
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Gallery Section */
.kgallery_8089 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.mgalleryItem_1193 {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.mgalleryItem_1193:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pgalleryImageWrapper_7049 {
  position: relative;
  overflow: hidden;
}

.pgalleryImage_2362 {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mgalleryItem_1193:hover .pgalleryImage_2362 {
  transform: scale(1.05);
}

.wgalleryOverlay_9608 {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 95, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mgalleryItem_1193:hover .wgalleryOverlay_9608 {
  opacity: 1;
}

.kgalleryOverlayText_6553 {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.kgalleryCaption_4010 {
  padding: var(--spacing-sm);
  background: white;
  text-align: center;
  font-size: 36px;
  font-family: 'Noto Sans', var(--font-primary);
  font-weight: 600;
  color: #7a7a7a;
  letter-spacing: normal;
}

/* Core Values Section (3-icon boxes) */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.core-value-box {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.core-value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.core-value-icon {
  font-size: 64px;
  margin-bottom: var(--spacing-md);
  line-height: 1;
}

.core-value-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.core-value-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Section - Random padding for each section */
.wsection_1194 {
  padding: 68px 0;
}

.wsection_1194:nth-of-type(2) {
  padding: 69px 0;
}

.wsection_1194:nth-of-type(3) {
  padding: 70px 0;
}

.msectionTitle_5332 {
  font-size: 35px;
  font-family: 'Nanum Gothic', var(--font-primary);
  font-weight: 500;
  color: #d0d0d0;
  background-color: #2c2e30;
  letter-spacing: 4px;
  padding: var(--spacing-sm) var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  display: inline-block;
  width: auto;
}

.wsection_1194:nth-of-type(2) .msectionTitle_5332 {
  font-size: 44px;
  font-family: 'Noto Sans KR', var(--font-primary);
  font-weight: 400;
  color: #333333;
  background-color: transparent;
  letter-spacing: 2px;
  padding: 0;
}

.wsection_1194:nth-of-type(3) .msectionTitle_5332 {
  font-size: 43px;
  font-family: 'Malgun Gothic', var(--font-primary);
  font-weight: 700;
  color: #545f5f;
  background-color: #3a3a3a;
  letter-spacing: 1px;
  padding: var(--spacing-sm) var(--spacing-md);
}

.psectionContent_8481 {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.xsectionImage_4563 {
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.xsectionImage_4563 img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.wfooter_925 {
  background: var(--color-primary);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.wfooter_925 h3,
.wfooter_925 h4 {
  margin-bottom: var(--spacing-sm);
}

.krow_1998 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.pfooterLinks_2300 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.pfooterLinks_2300 a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.pfooterLinks_2300 a:hover {
  color: var(--color-secondary);
}

.xfooterCopyright_3256 {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  opacity: 0.8;
}

/* Overview Table Styles */
.overview-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e1e8ed;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.overview-table-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #e1e8ed;
}

.overview-table-row:last-child {
  border-bottom: none;
}

.overview-table-header {
  padding: 20px 24px;
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  border-right: 1px solid #e1e8ed;
  display: flex;
  align-items: center;
}

.overview-table-cell {
  padding: 20px 24px;
  color: #555;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .overview-table-row {
    grid-template-columns: 1fr;
  }

  .overview-table-header {
    border-right: none;
    border-bottom: 1px solid #e1e8ed;
    padding: 16px 20px;
  }

  .overview-table-cell {
    padding: 16px 20px;
  }
}

/* Mobile Dropdown Menu */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    background: var(--color-accent);
    display: none !important;
  }

  .kmenuItem_5995.has-dropdown.active .dropdown-menu {
    display: block !important;
  }

  .parent-menu {
    display: block;
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .pheader_3701 .mcontainer_7690 {
    position: relative;
  }

  .pnav_7061 {
    display: none;
  }

  .kmobileToggle_5872 {
    display: flex;
    position: absolute !important;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }

  .pheroTitle_2822 {
    font-size: 32px;
  }

  .xheroSubtitle_5157 {
    font-size: 16px;
  }

  .msectionTitle_5332 {
    font-size: 28px;
  }

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wsection_1194 {
  animation: fadeIn 0.6s ease-out;
}
