body {
    font-family: 'Noto Sans KR', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6fa;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    overflow-y: auto;
}

.main-header {
    position: relative;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 1;
}
.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) blur(1px);
}
.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, #2d3e50 60%, #6a8caf 100%);
    opacity: 0.4;
    z-index: 2;
}
.header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}
.header-content h1 {
    font-size: 2.8rem;
    margin: 0 0 0.5rem 0;
    letter-spacing: 2px;
    font-weight: 700;
}
.slogan {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
}

main {
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
    scroll-snap-type: y mandatory;
    min-height: unset !important;
    height: unset !important;
    justify-content: unset !important;
    flex-direction: unset !important;
    display: block !important;
    background: transparent !important;
    overflow-y: scroll;
    padding-top: 4.8rem;
}
.global-bg {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    z-index: -1 !important;
    pointer-events: none !important;
    display: block !important;
}
.section-overlay {
    position: relative;
    z-index: 1;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
}
.hero.section-overlay {
    background: rgba(44,62,80,0.18);
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.card {
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
    padding: 0;
    margin: 0;
    transition: box-shadow 0.2s;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    scroll-snap-align: start;
    min-height: unset !important;
    height: unset !important;
    justify-content: unset !important;
    display: flex;
    flex-direction: column;
    background: none;
}
.card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}

.about-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.about-text {
    flex: 2;
}
.about-img {
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
}
.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    display: block;
    margin: 0 auto;
}

.services.card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.services.card h2 {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(44,62,80,0.7);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.service-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-item {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.18);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
    border: 1.5px solid #b3c6e0;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.service-item:hover {
    box-shadow: 0 10px 32px rgba(44,62,80,0.18);
    border: 2px solid #6a8caf;
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.service-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.9rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.13);
    border: 2px solid #e3eaf6;
    background: #f4f8fb;
}
.service-item, .service-item *, .service-item h3, .service-item p {
    color: #222 !important;
    text-shadow: none !important;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1rem;
}
.contact-form input,
.contact-form textarea {
    padding: 0.9rem;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1rem;
    background: #f8fafc;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #6a8caf;
    outline: none;
}
.contact-form button {
    background: linear-gradient(90deg, #2d3e50 60%, #6a8caf 100%);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1.2rem;
}
.contact-form button:hover {
    background: linear-gradient(90deg, #6a8caf 0%, #2d3e50 100%);
}

.flash {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.08rem;
}

footer {
    text-align: center;
    padding: 1.2rem 0;
    background: #222;
    color: #fff;
    font-size: 1rem;
    margin-top: 2rem;
    border-top: 1px solid #222;
    border-radius: 0 0 16px 16px;
    height: auto;
    box-sizing: border-box;
}

.contact-team {
    margin-bottom: 2.5rem;
}
.contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.contact-list-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    align-items: stretch;
}
.contact-person {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.12);
    padding: 2rem 1.8rem;
    text-align: left !important;
    min-width: 280px;
    max-width: 400px;
    color: #222 !important;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}
.contact-person:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(44,62,80,0.18);
}
.contact-person h3 {
    color: #222 !important;
    text-shadow: none;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0074D9;
    padding-bottom: 0.5rem;
}
.contact-person p {
    color: #555 !important;
    text-shadow: none;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1000px) {
    .contact-list-center {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
}
@media (max-width: 700px) {
    .contact-list-center {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 98vw;
        padding: 0 1rem;
    }
    .contact-person {
        max-width: 100%;
        min-width: 0;
        padding: 1.5rem;
    }
}

@media (max-width: 900px) {
    main {
        max-width: 100vw;
        padding: 0;
    }
    .about-flex {
        flex-direction: column;
        gap: 1.2rem;
    }
    .service-list {
        grid-template-columns: 1fr;
        max-width: 98vw;
    }
    .service-item {
        max-width: 98vw;
    }
    .contact-list {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 1.2rem 0 1.2rem 0;
    }
}
@media (max-width: 600px) {
    .main-header {
        height: 180px;
    }
    .header-content h1 {
        font-size: 1.5rem;
    }
    .card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
}

.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.main-logo {
    width: 300px !important;
    height: 300px !important;
    object-fit: contain;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(44,62,80,0.10);
    padding: 12px;
    margin-bottom: 2.5rem;
}

html, body, main {
    min-height: unset !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    flex-direction: unset !important;
    justify-content: unset !important;
    align-items: unset !important;
}
.main-nav {
    width: 100vw;
    background: #fff !important;
    box-shadow: none;
    border-bottom: none;
    position: fixed;
    top: 0; left: 0; z-index: 2000;
    height: 70px;
    display: flex;
    align-items: center;
    padding-top: 0;
}
body:not(.main-page) .main-nav {
    background: #fff !important;
}
body.main-page .main-nav {
    background: transparent !important;
}
body.main-page .main-nav:not(.scrolled) {
    background: transparent !important;
    background-color: transparent !important;
}
.nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    gap: 2rem;
    height: 100%;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0;
    height: 100%;
}
.nav-logo img {
    height: 70px;
    display: block;
    transition: all 0.3s ease;
}
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.nav-menu li a {
    font-family: 'Exo', Arial, sans-serif;
    color: #0074D9;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
    line-height: 1.2;
}
.nav-menu li a:hover {
    color: #fff;
    background: #005fa3;
}
.nav-right {
    width: 40px;
}

/* 각 섹션을 한 화면(뷰포트) 높이로 */
#about, #services, #contact-team, #inquiry-section {
    min-height: 420px;
}

/* 네비게이션 바로 인해 섹션이 가려지지 않도록 패딩 추가 */
#about, #services, #contact-team, #inquiry-section {
    scroll-margin-top: 70px;
}

#about, #contact-team {
    padding: 3rem 0 !important;
    max-width: 1200px;
    margin: 0 auto !important;
}

#about .about-text {
    color: #fff !important;
    font-size: 1.18rem;
    text-align: center;
    font-family: 'Noto Sans KR', 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 2.1;
    margin: 0 auto;
    max-width: 700px;
    padding: 0 1.5rem;
    word-break: keep-all;
}
#about h2,
#about .about-flex,
#about .about-text {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
}
#about h2 {
    color: #fff !important;
}
#contact-team h2 {
    color: #fff !important;
    text-align: center;
}

.hero {
    position: relative;
    width: 100vw;
    height: 150vh;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7) blur(0.5px);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.hero-content .main-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.2rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    padding: 8px;
}
.hero-content h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(44,62,80,0.25);
    margin: 0;
}
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    font-size: 2.2rem;
    color: #fff;
    opacity: 0.7;
    animation: scroll-bounce 1.5s infinite;
    z-index: 3;
    cursor: pointer;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}
@media (max-width: 700px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content .main-logo {
        width: 48px;
        height: 48px;
        padding: 4px;
    }
    #about .about-text {
        font-size: 1.05rem;
        padding: 0 0.5rem;
        max-width: 98vw;
    }
}

.inquiry.card, #inquiry {
    max-width: 400px;
    width: 100%;
    margin: 2rem auto 0 auto !important;
    align-self: center !important;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    border-radius: 18px;
    background: rgba(0,0,0,0.55);
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
}
#footer-info, .footer-info.card {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.footer-info-bg {
    padding: 0.5rem 0 !important;
    align-self: stretch !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    background: #111 !important;
}
#inquiry, .inquiry.card {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.footer-info-content {
    font-size: 10px;
    color: #fff;
}
@media (max-width: 900px) {
    .footer-info-bg {
        width: 100vw;
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    }
}

.services.card *, .service-item *, .service-item h3, .service-item p {
    color: #222 !important;
    text-shadow: none !important;
}
.services.card h2, .services-title {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(44,62,80,0.7) !important;
}

.hero, .hero-content {
    font-family: 'Montserrat', 'Noto Sans KR', Arial, sans-serif !important;
}

#top-btn {
    position: fixed;
    right: 2.5vw;
    left: auto;
    bottom: 2.5vw;
    z-index: 9999;
    background: linear-gradient(90deg, #0074c2 60%, #1565c0 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,116,194,0.13);
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#top-btn:hover {
    background: linear-gradient(90deg, #1565c0 0%, #0074c2 100%);
    color: #e3eaf6;
}

#about, .about-section {
    background: #fff;
    color: #222 !important;
    margin: 3rem auto;
    max-width: 1100px;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(44,62,80,0.18);
    position: relative;
    z-index: 10;
    padding: 3rem 2.5rem !important;
}
.about-text {
    color: #222 !important;
}
.about-flex {
    flex-direction: row !important;
    align-items: center;
    gap: 3rem;
}
.about-text {
    font-size: 1.05rem !important;
    font-family: 'Noto Sans KR', 'Montserrat', Arial, sans-serif !important;
}
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    background: #fff;
    position: relative;
    z-index: 11;
}
#about .about-text p, #about .about-text h2 {
    color: #222 !important;
}
@media (max-width: 900px) {
    .about-flex {
        flex-direction: column !important;
        gap: 1.2rem;
    }
    #about, .about-section {
        padding: 1.2rem 0.5rem !important;
        margin: 1.2rem 0.2rem;
    }
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    gap: 0.5rem;
    margin: 0;
    padding: 0 2rem 0 0;
    list-style: none;
    height: 2.7rem;
}
.nav-menu li {
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.3rem 1rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.2;
}
.nav-menu li a:hover {
    color: #e3eaf6 !important;
}

.service-list.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-list.product-list .service-item {
    background: #fff !important;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.7rem;
    min-height: 180px;
}
@media (max-width: 900px) {
    .service-list.product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

.flash-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.3);
}
.flash-modal-content {
  background: #f4faff;
  color: #222;
  margin: 15% auto;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(44,62,80,0.18);
  position: relative;
}
.flash-modal-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
} 

.hero-script {
    font-family: 'Exo' !important;
    font-size: 7vw !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    font-style: normal !important;
    text-shadow: none !important;
    color: #0074c2 !important;
    text-transform: uppercase !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
@media (max-width: 700px) {
    .hero-script {
        font-size: 15vw;
    }
}

.inquiry.card h2, #inquiry h2 {
    color: #fff !important;
} 

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.footer-info {
  margin-top: 0 !important;
  padding-top: 2rem;
}


/* ✅ Brand Color Theme (Blue) */
:root {
  --primary-color: #1e3a8a; /* dark blue */
  --accent-color: #3b82f6;  /* soft blue */
  --text-color: #1f2937;
  --bg-color: #f9fafb;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

a.cta-button {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}
a.cta-button:hover {
  background-color: var(--primary-color);
}

/* ✅ Section Layout Enhancements */
section {
  padding: 4rem 2rem;
}
.hero-script {
  color: white;
  font-size: 3rem;
}

/* ✅ 모바일 네비게이션 강제 수정 */
@media screen and (max-width: 768px) {
  .page-container nav.main-nav ul.nav-menu {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.8rem !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
    height: auto !important;
    display: flex !important;
  }
  .page-container nav.main-nav ul.nav-menu li {
    display: inline-block !important;
  }
  .page-container nav.main-nav ul.nav-menu li a {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.7rem !important;
    display: inline-block !important;
    line-height: 1.2 !important;
  }
}

@media screen and (max-width: 480px) {
  .page-container nav.main-nav ul.nav-menu {
    gap: 0.5rem !important;
  }
  .page-container nav.main-nav ul.nav-menu li a {
    font-size: 0.8rem !important;
    padding: 0.3rem 0.5rem !important;
    line-height: 1.2 !important;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-subtitle {
    font-size: 1.2rem !important;
  }
}

/* ✅ 기존 반응형 레이아웃 */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column !important;
    gap: 2rem;
  }
  .main-logo {
    max-width: 80%;
    height: auto;
  }
  .hero-script {
    font-size: 2rem;
  }
  section {
    padding: 2rem 1rem;
  }
}


.hero-overlay {
  margin-top: 2rem;
  text-align: center;
  color: white;
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


form button[type="submit"] {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  min-width: 340px;
  max-width: 95vw;
  margin: 0 auto;
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
}
.hero-center-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #f4f6fa !important;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  z-index: 1;
}
.hero-center > *:not(.hero-center-bg) {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-family: 'Exo', sans-serif;
  font-size: 5vw;
  color: #0074c2;
  margin: 1.5rem 0 0.5rem 0;
  font-weight: 900;
  letter-spacing: 2px;
}
.hero-subtitle {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.cta-button {
  background: #2979ff;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  margin-top: 0.5rem;
}
.cta-button:hover {
  background: #1565c0;
}

/* 제품 카드 스타일 */
.products-section {
  background: transparent !important;
  padding: 4rem 0 3rem 0;
  min-height: 100vh;
}
.products-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0074c2;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.products-list {
  background: transparent !important;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem 2.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: #fff !important;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(44,62,80,0.13);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #b3c6e0;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 10px 32px rgba(44,62,80,0.18);
  border: 2px solid #0074c2;
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(44,62,80,0.13);
  border: none;
  background: #f4f8fb;
  display: block;
}
.product-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.5rem 0 0.3rem 0;
  color: #0074c2;
}
.product-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.7rem;
}
.product-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.product-tag {
  background: #e3eaf6;
  color: #0074c2;
  font-size: 0.92rem;
  padding: 0.25rem 0.7rem;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 0.2rem;
}
@media (max-width: 900px) {
  .products-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .product-card {
    width: 95vw;
    max-width: 340px;
  }
}

/* 상담 모달 스타일 */
.consult-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,20,10,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.consult-modal-content {
  background: #f4faff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  min-width: 340px;
  max-width: 95vw;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.consult-modal-close,
.consult-modal-icon,
.consult-modal h2,
.consult-modal-content div[style*='color:#795548'],
.consult-modal-content div[style*='color: #795548'] {
  color: #0074c2 !important;
  background: none !important;
}
.consult-modal-icon {
  background: #0074c2 !important;
}
.consult-call-btn, .consult-close-btn {
  border: 2px solid #0074c2;
  color: #0074c2;
  background: #fff;
}
.consult-call-btn {
  background: #0074c2;
  color: #fff;
}
.consult-call-btn:hover {
  background: #1565c0;
  color: #fff;
  border-color: #1565c0;
}
.consult-close-btn:hover {
  background: #e3eaf6;
}
.hero-btn-group .cta-button {
  min-width: 140px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 0;
  border-radius: 8px;
  border: none;
  background: #0074c2;
  color: #fff;
  margin: 0;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.hero-btn-group .cta-button.cta-consult-btn {
  background: #fff;
  color: #0074c2;
  border: 2px solid #0074c2;
}
.hero-btn-group .cta-button.cta-consult-btn:hover {
  background: #e3eaf6;
  color: #0074c2;
  border: 2px solid #1565c0;
}
.hero-btn-group .cta-button:hover {
  background: #1565c0;
  color: #fff;
}
@media (max-width: 600px) {
  .consult-modal-content {
    min-width: 90vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 0.7rem;
  }
}

@media (max-width: 600px) {
  .hero-center {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    border-radius: 18px;
  }
  .hero-center-bg {
    border-radius: 18px;
  }
}

/* 챗봇 버튼 */
#chatbot-btn {
  position: fixed;
  right: 2.5vw;
  bottom: 6.5vw;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 12px 0 rgba(44,62,80,0.10), 0 1.5px 4px 0 rgba(0,0,0,0.04);
  border: none;
}
#chatbot-btn img {
  width: 36px;
  height: 36px;
  filter: none;
  display: block;
  margin: 0 auto;
}
/* 챗봇 모달 */
.chatbot-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,20,10,0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-modal-content {
  background: #f4faff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  min-width: 340px;
  max-width: 95vw;
  width: 400px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chatbot-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #0074c2;
  cursor: pointer;
  font-weight: 700;
}
.chatbot-modal-header {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0074c2;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.chatbot-messages {
  width: 100%;
  min-height: 120px;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: left;
  font-size: 1rem;
}
.chatbot-msg {
  margin-bottom: 0.7rem;
  line-height: 1.5;
  word-break: break-all;
  white-space: pre-line;
  max-width: 90%;
}
.chatbot-msg.user {
  color: #1565c0;
  font-weight: 700;
  text-align: right;
}
.chatbot-msg.ai {
  color: #333;
  font-weight: 400;
  text-align: left;
  white-space: pre-line;
  line-height: 1.0;
  margin-bottom: 0.4rem;
}
.chatbot-form {
  display: flex !important;
  align-items: center !important;
  gap: 0.7rem !important;
  padding: 0.7rem 1.2rem 1rem 1.2rem !important;
  background: #f4faff;
  border-top: 1px solid #e3eaf6;
  overflow: visible !important;
}
.chatbot-form input[type="text"] {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  width: auto !important;
  height: 40px !important;
  border-radius: 8px !important;
  padding: 0.5rem 1rem 0.5rem 0.9rem !important;
  font-size: 0.98rem !important;
  border: 1.5px solid #b3c6e0 !important;
  box-sizing: border-box !important;
}
.chatbot-form button[type="submit"] {
  flex-shrink: 0 !important;
  margin-left: 0.3rem !important;
  min-width: 44px !important;
  width: 44px !important;
  height: 40px !important;
  border-radius: 8px !important;
  background: #0074c2 !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.18s, color 0.18s !important;
  box-sizing: border-box !important;
}
.chatbot-form button[type="submit"]:hover {
  background: #1565c0 !important;
}
/* 문의하기 버튼과 영역 사이 여백 */
.contact-form button {
  margin-bottom: 2.2rem !important;
}

.chatbot-floating {
  position: fixed;
  right: 2.5vw;
  bottom: 8.5vw;
  width: 420px !important;
  height: 540px !important;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  display: flex;
  flex-direction: column;
  z-index: 10001;
  overflow: hidden;
}
.chatbot-floating-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: #f4faff;
  border-bottom: 1px solid #e3eaf6;
  font-size: 1.1rem;
}
.chatbot-floating-close {
  font-size: 1.7rem;
  color: #0074c2;
  cursor: pointer;
  font-weight: 700;
}
.chatbot-messages {
  flex: 1;
  width: 100%;
  min-height: 120px;
  max-height: 370px !important;
  overflow-y: auto;
  background: #fff;
  border-radius: 0;
  padding: 1rem;
  margin-bottom: 0.5rem;
  text-align: left;
  font-size: 1rem;
}
.chatbot-form {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  padding: 0.7rem 2.2rem 1rem 1.2rem;
  background: #f4faff;
  border-top: 1px solid #e3eaf6;
}
.chatbot-form input[type="text"] {
  flex: 1;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  border: 1.5px solid #b3c6e0;
  font-size: 0.98rem;
  height: 40px;
  box-sizing: border-box;
}
.chatbot-form button {
  margin-right: 0;
  min-width: 56px;
  background: #0074c2;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0 1.1rem;
  height: 40px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-form button:hover {
  background: #1565c0;
}

/* 챗봇 입력창/버튼 자연스러운 스타일 */
.chatbot-input {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.2rem 1rem 1.2rem;
  background: #f4faff;
  border-top: 1px solid #e3eaf6;
  gap: 0.5rem;
}

.chatbot-input input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 40px;
  border-radius: 8px;
  padding: 0 1rem;
  font-size: 1rem;
  border: 1.5px solid #b3c6e0;
  box-sizing: border-box;
  background: #fff;
  color: #222;
  outline: none;
  transition: border 0.18s;
}

.chatbot-input input[type="text"]:focus {
  border: 1.5px solid #0074c2;
}

.chatbot-input button {
  flex-shrink: 0;
  width: 44px;
  height: 40px;
  border-radius: 8px;
  background: #0074c2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}

.chatbot-input button:hover {
  background: #1565c0;
}

.chatbot-input button svg {
  width: 22px;
  height: 22px;
  display: block;
}

body, html, .page-container, main {
  background: transparent !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

nav.main-nav {
  position: fixed;
  top: 0; left: 0; width: 100vw;
  z-index: 2000;
  height: 3.8rem;
  min-height: 3.8rem;
  max-height: 3.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: transparent !important;
  border-radius: 0 0 18px 18px;
  box-shadow: none;
}
nav.main-nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.main-nav ul li {
  margin: 0;
  padding: 0;
}
nav.main-nav ul li a {
  font-family: 'Exo', Arial, sans-serif !important;
  color: #0074D9 !important;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  background: transparent;
  display: block;
  line-height: 1.2;
  height: auto;
}
nav.main-nav ul li a:hover, nav.main-nav ul li a:focus {
  color: #fff !important;
  background: #005fa3 !important;
}

body:not(.main-page) .about-section,
body:not(.main-page) .products-section,
body:not(.main-page) .contact-section,
body:not(.main-page) .location-section,
body:not(.main-page) .inquiry-section {
    margin-top: 90px !important;
}
