@charset "utf-8";
/* CSS Document */

:root {
    --gold: #cea73b;
	--soft-gold: #faf8ec;
	--light-gold: #faf8ec;
	--bright-gold: #c09432;
	--bg-gold: #f6f2e9;
	
	--gray: #1e1e1e;
	--dark-gray: #555;
	--light-gray: #ddd;
	
  
    --white: #FFFFFF;
	--navy: #2c3e50;
	
     
    --dark-gray: #555;
    
    --brown: #8B4513;
    
    
    --faint-gray: rgba(85, 85, 85, 0.3);
    --shadow: rgba(0, 0, 0, 0.1);
    --faint-brown: rgba(139, 69, 19, 0.7);
    --dark-gray-bg: #555;
    --light-gray-bg: rgba(220, 220, 220, 0.5);
    --medium-gray-bg: #A9A9A9;
    --dark-gold-bg: linear-gradient(to bottom, #B8860B, #8B6914);
    --border-gray: #DCDCDC;
    --deep-gray: #1A1A1A;
    --muted-mint: #6B9EFF;
    --arrow-base: #FFD700;
    --arrow-active: #FFD700;
    --beige: #FDFCF5;
    --faint-beige: rgba(253, 252, 245, 0.5);
    --blurred-beige: rgba(253, 252, 245, 0.9);
    --thick-gold: #B8860B;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--gray);
    overscroll-behavior: none;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a{text-decoration: none;}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    flex: 1 0 auto;
    padding-bottom: 0;
}
nav {
    background: rgba(0, 0, 0, 0.5);
    height: 80px;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}
.nav-logo span {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}
.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    line-height: 80px;
    padding: 0px 16px;
    cursor: pointer;
}
.nav-links a:hover {
    color: var(--gold);
}
.nav-item {
    position: relative;
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    width: 150px;
    padding: 0;
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-item:hover .submenu {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.submenu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    line-height: normal;
}
.submenu a:hover {
    color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
}
.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    line-height: 60px;
}
.main-section {
    position: relative;
    text-align: center;
    min-height: 70vh;
    /* margin-top: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    background: var(--beige);
    z-index: 10;
}
.main-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.main-background.active {
    opacity: 1 !important;
}
.main-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
}
.main-content-overlay-part {
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: slideOpen 1.5s forwards;
}
.main-content-overlay-part.left {
    transform: translateX(0);
}
.main-content-overlay-part.right {
    transform: translateX(0);
}
@keyframes slideOpen {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% * var(--direction))); }
}
.main-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-content h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 12px;
    opacity: 0;
    text-shadow: none;
}
.main-content h1 strong {
    color: var(--gold);
}
.main-content .typing {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    opacity: 1;
    text-shadow: none;
    position: relative;
    display: inline-block;
}
.main-content .bottom-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 36px;
    font-weight: normal;
    opacity: 0;
    text-shadow: none;
}
.main-content .bottom-text strong {
    color: var(--gold);
}
@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes slideUp {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes slideUpItem {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}


.area-01 {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
}

.area-02 {
    background: var(--soft-gold);
    padding: 60px 0;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
}

.area-03 {
    background: var(--bg-gold);
    padding: 60px 0;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
}

.area-2 {
    background: var(--white);
    padding: 50px 0;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
}
.area-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/logo.jpeg');
    background-position: left center;
    background-size: 50% auto;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: grayscale(100%) brightness(0.8);
    z-index: -1;
}

.section-contain{
    margin-bottom: 60px;
}
.card-section {
    position: relative;
    z-index: 1;
}
.card-slider {
    position: relative;
    overflow: hidden;
    width: 93%;
    display: flex;
    align-items: center;
    /* padding: 20px 0; */
    max-width: calc((250px * 4) + (12px * 8));
    margin: 0 auto;
}
.card-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}
.card {
    flex: 0 0 250px;
    border-radius: 16px;
    padding: 20px;
    background-color: var(--light-gold);
    text-align: center;
    margin: 0px 12px;
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card:hover {
    transform: scale(1.03);
    background-color: var(--gold);
}
.card:hover .card-icon,
.card:hover h3,
.card:hover p {
    color: var(--white);
}
.card p {
    
    font-size: 18px;
    color: #444;
    line-height: 1.5;
    word-break: keep-all;
    transition: color 0.3s ease;
}
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}
.slider-controls button {
    background: var(--gold);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    position: absolute;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.slider-controls .prev-btn {
    left: 0;
}
.slider-controls .next-btn {
    right: 0;
}
.slider-controls button:hover {
    background: var(--bright-gold);
}
.growth-text {
    text-align: center;
    margin: 40px 0;
    color: var(--gray);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.statistics-section {
    position: relative;
    width: 100%;
    /* padding: 20px 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 20px; */
    z-index: 1;
    overflow: hidden;
}
.stat-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
    width: 100%;
    justify-content: space-between;
}
.stat-item {
    flex: 1;
    text-align: center;
    color: var(--gray);
    font-weight: 600;
    padding: 16px;
    border: 1px solid var(--gold);
    border-radius: 16px;
    height: 220px;
    background: #fffef9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin: 0 5px; */
}
.stat-item:hover {
    transform: scale(1.03);
    background-color: var(--gold);
}
.stat-item:hover .large-text,
.stat-item:hover .small-text,
.stat-item:hover .percentage {
    color: var(--white);
}
.stat-item .large-text {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.stat-item .small-text {
    font-size: 18px;
    color: var(--gray);
    transition: color 0.3s ease;
}
.circle-graph {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
}
.circle-graph svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.circle-graph circle {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
}
.circle-graph .background {
    stroke: var(--light-gray);
}
.circle-graph .progress {
    stroke: var(--gold);
    stroke-dasharray: 301.44;
    stroke-dashoffset: 301.44;
    transition: stroke-dashoffset 2s ease-in-out;
}
.stat-item:hover .circle-graph .progress {
    stroke-dashoffset: 39.1872;
}
.circle-graph .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20px;
    color: var(--gold);
    font-weight: bold;
    transition: color 0.3s ease;
}
.area-3 {
    background: var(--soft-gold);
    padding: 50px 0;
    position: relative;
    z-index: 2;
}
.area-3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/logo.jpeg');
    background-position: right center;
    background-size: 50% auto;
    background-repeat: no-repeat;
    opacity: 0.2;
    filter: grayscale(100%) brightness(1.2);
    z-index: -1;
}
.solution-section {
    position: relative;
    z-index: 1;
}

.solution-slider {
    flex: 1;
    position: relative;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    touch-action: pan-y;
    padding: 20px 0;
}
.solution-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}
.solution-card {
    flex: 0 0 calc(22% - 20px);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    background-color: #fffef9;
    margin: 0 10px;
    overflow: hidden;
    height: 320px;
}
.solution-card:hover {
    transform: scale(1.03);
    background-color: #fffef9;
}
.solution-card:hover .card-text,
.solution-card:hover .text-top,
.solution-card:hover .text-bottom {
    color: #000;
}
.solution-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.solution-card .card-text {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(255, 255, 245, 0.8);
    color: #000;
    text-align: center;
    transition: color 0.3s ease;
}
.card-text .text-top,
.card-text .text-bottom {
    font-family: 'Noto Sans KR', sans-serif;
    color: inherit;
    display: block;
    margin: 0;
    transition: color 0.3s ease;
}
.text-top {
    font-size: 16px;
    font-weight: bold;
}
.text-bottom {
    font-size: 14px;
    font-weight: bold;
}
.index-consulting-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* margin-top: 100px; */
    z-index: 1;
}
.index-consulting-title {
    /* font-family: 'Noto Sans KR', sans-serif; */
    /* font-size: 48px; */
    /* font-weight: bold; */
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 20px; */
    align-self: center;
    position: relative;
}
.consulting-title::before,
.consulting-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray);
    margin: 0 20px;
}
.consulting-title i {
    font-size: 48px;
    color: var(--gray);
}
.consulting-title span {
    font-family: 'Noto Sans KR', sans-serif;
}

.content-sub-text{font-size: 18px;margin-bottom: 28px;line-height: 1.5;font-weight: 500;}

.index-consulting-process {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    justify-content: center;
    width: 100%;
    position: relative;
    border-radius: 16px;
}
.process-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}
.consulting-step {
    width: 180px;
    height: 300px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideIn 0.5s ease-in-out forwards;
    position: relative;
}
.consulting-step:hover {
    transform: scale(1.05);
    background-color: var(--gold);
}
.consulting-step:hover i,
.consulting-step:hover h3,
.consulting-step:hover p {
    color: var(--white);
}
.consulting-step:nth-child(1) { animation-delay: 0.2s; }
.consulting-step:nth-child(3) { animation-delay: 0.4s; }
.consulting-step:nth-child(5) { animation-delay: 0.6s; }
.consulting-step:nth-child(7) { animation-delay: 0.8s; }
.consulting-step:nth-child(9) { animation-delay: 1.0s; }
.consulting-step:nth-child(11) { animation-delay: 1.2s; }
@keyframes slideIn {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
.consulting-step i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.consulting-step h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-weight: bold;
}
.consulting-step p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    color: var(--gray);
    transition: color 0.3s ease;
    font-weight: normal;
    line-height: 1.4;
}
.consulting-step::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    border-radius: 12px;
    width: auto;
    height: auto;
    padding: 8px 16px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.process-arrow {
    font-size: 30px;
    color: var(--gold);
    margin: 0 5px;
    animation: blinkArrow 1s infinite;
    align-self: center;
}
@keyframes blinkArrow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}
.area-4 {
    background: rgba(245, 242, 232, 0.9);
    padding: 50px 0;
    position: relative;
    z-index: 2;
}
.area-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/logo.jpeg');
    background-position: left center;
    background-size: 50% auto;
    background-repeat: no-repeat;
    opacity: 0.1;
    filter: grayscale(100%) brightness(1.5);
    z-index: -1;
}
.live-application-section {
    position: relative;
    padding: 48px 40px;
    background: var(--white);
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.live-application-section h2 {
    font-size: 32px;
    text-align: center;
    text-shadow: none;
    width: 100%;
    margin-bottom: 48px;
}
.application-list {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.application-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid var(--navy);
    margin-bottom: 10px;
    text-shadow: none;
    margin-top: 20px;
}
.application-header span {
    flex: 0 0 15%;
    text-align: center;
}
.application-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    color: var(--gray);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpItem 1s forwards;
    position: absolute;
    width: 100%;
}
.application-item span {
    color: var(--gray) !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex: 0 0 15%;
    min-width: 80px;
}
.application-form {
    position: relative;
    padding: 48px 40px;
    z-index: 1;
    /* width: 90%; */
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #ddd;
}
.application-form h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    text-shadow: none;
    width: 100%;
}
.form-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 20px; */
    /* margin-top: 20px; */
}
.form-row {
    display: flex;
    gap: 28px;
    width: 100%;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    width: 100%;
}
.form-group label {
    font-size: 16px;
    font-weight: bold;
    text-shadow: none;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 16px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: var(--gray);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    opacity: 1;
}
.form-group select option {
    color: var(--gray);
}
.form-group textarea {
    resize: vertical;
    min-height: 160px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    outline: none;
}
.form-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    /* margin-top: 20px; */
    flex-direction: row;
}
.form-checkbox input {
    width: 20px;
    height: 20px;
}
.form-checkbox label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    color: var(--navy);
}
.form-checkbox label a {
    color: var(--navy);
    text-decoration: underline;
    cursor: pointer;
}
.submit-button {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: var(--gold);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
    align-self: center;
    margin-top: 20px;
}
.submit-button:hover {
    background: var(--light-gold);
    transform: scale(1.05);
}
.submit-button:active {
    transform: scale(0.95);
}

.floating-buttons {
    position: fixed;
    right: 16px;
    bottom: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.floating-buttons a:hover {
    transform: scale(1.1);
}
.floating-buttons .consult-btn {
    background: var(--muted-mint);
    border-radius: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.9em;
    color: var(--white);
    flex-direction: column;
    line-height: 1.2;
    padding: 0;
    text-align: center;
}
.floating-buttons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer {
    background: var(--gray);
    color: var(--white);
    padding: 36px 16px;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.footer .footer-logo img {
    height: 25px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer .footer-logo span {
    font-size: 16px;
    font-weight: 600;
}
.footer p {
    font-size: 14px;
    line-height: 1.8;
}
.footer p span {
    font-weight: 500;
}
.footer a {
    color: var(--white);
    text-decoration: underline;
    cursor: pointer;
}
.privacy-policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: var(--blurred-beige);
    border: 4px solid var(--thick-gold);
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    color: var(--gray);
    font-family: 'Noto Sans KR', sans-serif;
}
.modal-content h2 {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: bold;
    text-align: center;
    color: var(--gray);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--thick-gold);
    padding-bottom: 10px;
}
.modal-content h3 {
    font-size: clamp(14px, 2.5vw, 18px);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}
.modal-content p {
    font-size: clamp(12px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: 10px;
}
.modal-content ul {
    list-style-type: disc;
    padding-left: 20px;
}
.modal-content li {
    font-size: clamp(12px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: 5px;
}
.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2em;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    border: 1px solid #000;
    z-index: 2001;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}


/*intro*/

    .intro-section {
      position: relative;
      text-align: center;
      height: 60vh;
      margin-top: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1;
    }

    .intro-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    }

    .intro-background.active {
      visibility: visible;
      opacity: 1;
    }

    .intro-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .intro-text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      width: 80%;
      max-width: 800px;
    }

    .title-container {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 30px;
    }

    .main-title-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(16px, 3vw, 24px);
      font-weight: 400;
      color: rgba(212, 175, 55, 1);
      margin-bottom: 2px;
    }

    .main-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(24px, 6vw, 48px);
      color: var(--white);
      /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
    }


    .border-lines {
      width: 100%;
      height: 4px;
      margin-top: 10px;
      margin-bottom: 30px;
      opacity: 1;
    }

    .border-lines svg {
      width: 100%;
      height: 100%;
    }

    .border-lines .top-line {
      fill: none;
      stroke: var(--gold);
      stroke-width: 4;
    }

    .intro-text-middle {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(20px, 3vw, 26px);
      color: var(--white);
      white-space: nowrap;
      text-align: center;
      /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
    }

    .intro-slogan {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(24px, 4vw, 30px);
      /* font-style: italic; */
      font-weight: bold;
      color: var(--white);
      text-align: center;
      margin-top: 30px;
      /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
    }

    .content-section {
      position: relative;
      background: linear-gradient(to bottom, var(--faint-beige), var(--white));
      padding: 50px 0;
      flex: 1 0 auto;
    }

    .content-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('images/logo.jpeg');
      background-position: left center;
      background-size: 50% auto;
      background-repeat: no-repeat;
      opacity: 0.4;
      filter: grayscale(100%) brightness(0.8);
      z-index: -1;
    }

    .greeting-section {
      position: relative;
      padding: 60px;
      width: 100%;
      background: url('images/intro/ii1.jpg') no-repeat center;
      background-size: cover;
      background-color: rgba(255, 255, 251, 0.9);
      background-blend-mode: overlay;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      z-index: 1;
      border-left: 5px solid var(--gold);
    }

    .greeting-section h2 {
      font-size: 32px;
      color: var(--gray);
      text-align: center;
      margin-bottom: 60px;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 32px;
    }

    .greeting-content {
      color: #333;
      line-height: 1.8;
      text-align: center;
    }


.ceo-content{
    width: 100%;
    display: flex;
    gap: 40px;
}

.ceo-divide{    border-top: 1px solid var(--gold);
    padding-top: 60px;
    margin-top: 60px;
	
}
.ceo-content p{
	line-height:1.8;
	font-size: 16px;
	margin-bottom: 16px;
}
.ceo-content img{width:100%;border-radius: 16px;}
.ceo-left{
    flex: 1;
}
.ceo-right{flex: 1;}


 .ceo-content .greeting-signature {
      font-size: 16px;
      color: var(--gold);
      text-align: left;
      margin-top: 30px;
      padding-right: 20px;
    }
    .greeting-content strong {
      font-weight: 700;
      color: #222;
    }

    .greeting-content br {
      display: block;
      margin: 10px 0;
    }

    .greeting-signature {
      font-size: 16px;
      color: var(--gold);
      text-align: center;
      margin-top: 30px;
      padding-right: 20px;
    }

/*policy*/


.main-image-section {
  position: relative;
  text-align: center;
  height: 60vh;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.main-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.main-image-background.active {
  visibility: visible;
  opacity: 1;
}

.main-image-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main-image-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  width: 80%;
  max-width: 800px;
}


.main-image-text-middle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--white);
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.main-image-text-middle span {
  display: block;
}

.main-image-slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 4vw, 30px);
  font-style: italic;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  margin-top: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);

}


.policy-card-section,
.additional-message-section {
  position: relative;
  width: 100%;
  max-width: 1275px;
  margin: 40px auto;
  padding: 20px;
}

.policy-types-section,
.certification-section,
.business-types-section,
.review-points-section,
.statistics-section {
  position: relative;
  width: 100%;
  /* max-width: 1440px; */
  /* margin: 40px auto; */
  /* padding: 20px; */
  /* border: 2px solid var(--gold); */
  border-radius: 16px;
}

.section-title {
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--white);
  background: var(--gold);
  padding: 5px 15px;
  border-radius: 5px;
  text-shadow: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
  /* max-width: calc((242.25px * 4) + (24.225px * 3)); */
  /* margin: 30px auto 0; */
}

.card-container .card{
   border-radius: 16px;
   padding: 48px 20px;
   background-color: var(--light-gold);
   text-align: center;
   margin: 0;
   position: relative;
   height: auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
   flex: 1;
}

.certification-section .card-container {
  max-width: calc((200px * 5) + (24.225px * 4));
  gap: 24.225px;
}

.review-points-section .card-container {
  max-width: calc((260px * 4) + (24.225px * 3));
  gap: 24.225px;
}



.certification-section .card {
  flex: 0 0 200px;
  height: 350px;
}

.review-points-section .card {
  flex: 0 0 260px;
  height: 350px;
}

.card:hover {
  transform: scale(1.03);
  background-color: var(--gold);
}

.card:hover .card-icon,
.card:hover h3,
.card:hover p {
  color: var(--white);
}

.card-icon {
  font-size: 50px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.card h3 {
  font-size: 24px;
  color: var(--gray);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  word-break: keep-all;
  transition: color 0.3s ease;
}

.card p span {
  display: block;
}

.policy-card,
.additional-message-box {
  position: false;
  width: 100%;
  max-width: 1275px;
  height: 90px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 30px;
}

.policy-message,
.additional-message-content {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  line-height: 1.8;
}

.additional-message-content span {
  display: block;
  margin: 5px 0;
  font-size: clamp(14px, 3vw, 18px);
  word-break: break-word;
  white-space: normal;
}

.circle-graph {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 6px;
}

.circle-graph svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-graph circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.circle-graph .background {
  stroke: transparent;
}

.circle-graph .progress {
  stroke: var(--gold);
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  animation: fillProgress 3s ease-in-out infinite;
}

@keyframes fillProgress {
  0% { stroke-dashoffset: 251.2; }
  70% { stroke-dashoffset: 32.6; }
  100% { stroke-dashoffset: 32.6; }
}

.circle-graph .percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: var(--gold);
  font-weight: bold;
}

.privacy-policy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-wrapper {
  position: relative;
  width: 90%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--blurred-beige);
  border: 4px solid var(--thick-gold);
  padding: 20px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  color: var(--gray);
  font-family: 'Noto Sans KR', sans-serif;
}

.modal-content h2 {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  color: var(--gray);
  margin-bottom: 20px;
  border-bottom: 3px solid var(--thick-gold);
  padding-bottom: 10px;
}

.modal-content h3 {
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.modal-content p {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.modal-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.modal-content li {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 5px;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 2em;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 50%;
  border: 1px solid #000;
  z-index: 2001;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

@keyframes slideUpItem {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*startup_fund*/

        .fund-content {
            padding: 40px;
            background: var(--blurred-beige);
            border: 1px solid var(--thick-gold);
            border-radius: 16px;
            color: var(--gray);
        }

        .fund-content h2 {
            font-size: 1.3em;
            font-weight: bold;
            text-align: center;
            color: var(--gray);
            margin-bottom: 20px;
            border-bottom: 3px solid var(--thick-gold);
            padding-bottom: 10px;
        }

        .fund-content h3 {
            font-size: 18px;
            margin-top: 24px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .fund-content p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .fund-content ul {
            list-style-type: disc;
            padding-left: 20px;
        }

        .fund-content li {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

/*consulting*/

    .consulting-section {
      position: relative;
      text-align: center;
      height: 60vh;
      margin-top: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1;

    }

    .consulting-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    }

    .consulting-background.active {
      visibility: visible;
      opacity: 1;
    }

    .consulting-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .consulting-text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      width: 80%;
      max-width: 800px;
    }

    .consulting-text-middle {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(26px, 4vw, 32px);
      color: var(--white);
      white-space: nowrap;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .consulting-slogan {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(18px, 3vw, 24px);
      font-style: italic;
      font-weight: bold;
      color: var(--white);
      text-align: center;
      margin-top: 30px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }


    .why-zipuragi-section {
      \: 60px auto;
      text-align: center;
    }

    .why-zipuragi-title-container {
      border-bottom: 4px solid var(--gold);
      padding-bottom: 15px;
      display: inline-block;
      margin-bottom: 30px;
    }

    .why-zipuragi-title {
      font-family: 'Noto Sans KR', sans-serif;
      font-size: clamp(24px, 5vw, 36px);
      font-weight: bold;
      color: var(--gray);
      margin: 0;
    }

    .why-zipuragi-list-container {
      border: 5px solid var(--gold);
      border-radius: 10px;
      padding: 30px;
      max-width: 900px;
      margin: 0 auto 30px;
      background: var(--white);
    }

    .why-zipuragi-list-wrapper {
      margin: 0 auto;
      text-align: left;
    }

    .why-zipuragi-list {
      list-style: none;
      margin: 0;
      display: flex;
      justify-content: space-evenly;
      width: 100%;
      gap: 40px;
    }

    .why-zipuragi-list li {
      \: 'Noto Sans KR', sans-serif;
      font-size: 18px;
      color: var(--gray);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-direction: column;
      text-align: center;
      background: #fff;
      border-radius: 100%;
      padding: 30px;
      width: 300px;
      height: 300px;
      justify-content: center;
    }

    .why-zipuragi-list li.top {
      font-size: clamp(18px, 3.5vw, 24px);
      margin-bottom: 20px;
      justify-content: center;
      text-align: center;
      white-space: nowrap;
    }

    .why-zipuragi-list li.top::before {
      content: none;
    }

    .why-zipuragi-list li::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      display: inline-block;
    }

    .why-zipuragi-list li.check::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--gold);
      font-size: 40px;
      width: auto;
      height: auto;
      background: none;
    }

    .why-zipuragi-table {
      width: 100%;
      /* max-width: 1000px; */
      margin: 40px auto;
      border-collapse: collapse;
      background: var(--white);
      /* box-shadow: 0 2px 5px var(--shadow); */
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #ddd;
    }

    .why-zipuragi-table th {
      padding: 16px;
      text-align: center;
      border-bottom: 1px solid var(--border-gray);
      background: var(--gold);
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
    }

    .why-zipuragi-table td {
      padding: 16px 16px 16px 16px;
      text-align: center;
      border-bottom: 1px solid var(--border-gray);
      font-size: 16px;
      color: var(--gray);
    }

    .why-zipuragi-table td:first-child::before {
      content: none;
    }

    .why-zipuragi-text-container {
      max-width: 800px;
      margin: 30px auto;
    }

    .why-zipuragi-text {
      font-family: 'Noto Sans KR', sans-serif;
      font-size: clamp(20px, 4vw, 28px);
      font-weight: bold;
      color: var(--gray);
      margin: 0;
      text-align: center;
    }

    .why-zipuragi-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .why-zipuragi-button {
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 500;
      color: var(--white);
      background: var(--gold);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .why-zipuragi-button::before {
      content: '\f058';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--white);
    }

    .why-zipuragi-button:hover {
      background: var(--bright-gold);
      transform: scale(1.05);
    }

    .consulting-case-section {
      /* margin: 60px auto; */
      max-width: 1200px;
      text-align: center;
    }

    .case-message {
      /* background: var(--gold); */
      color: var(--gray);
      font-size: clamp(18px, 4vw, 30px);
      font-weight: bold;
      padding: 15px 30px;
      border-radius: 10px;
      margin: 20px auto;
      max-width: 1200px;
      text-align: center;
      font-family: 'Noto Sans KR', sans-serif;
    }

    .case-message span {
      display: inline;
    }

    .consulting-case-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      justify-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 20px auto;
    }

    .consulting-case-cards .case-card {
      width: 100%;
      border: 1px solid var(--light-gray);
      border-radius: 16px;
      padding: 16px;
      background: var(--white);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .case-card:hover {
      transform: scale(1.05);
    }


    .case-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .case-card h3 {
      font-family: 'Noto Sans KR', sans-serif;
      font-size: clamp(18px, 2.5vw, 18px);
      color: var(--gray);
      margin-bottom: 10px;
      font-weight: bold;
      text-align: center;
    }

    .case-card h3 span:nth-child(2) {
      display: block;
    }

    .case-card p {
      font-size: clamp(14px, 2vw, 16px);
      color: var(--dark-gray);
      line-height: 1.5;
    }

    .hidden-cases {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-in-out;
    }

    .hidden-cases.show {
      max-height: 10000px;
    }

    .toggle-button {padding: 16px 32px;font-size: 18px;font-weight: 500;background: var(--gold);display: inline-block;color: var(--white);border-radius: 8px;margin: 20px auto 0;transition: background 0.3s ease;font-family: 'Noto Sans KR', sans-serif;}

    .toggle-button:hover {
      background: var(--bright-gold);
    }

    .consulting-process {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
      position: relative;
    }

    .consulting-title {
      font-family: 'Noto Sans KR', sans-serif;
      font-size: clamp(24px, 5vw, 48px);
      font-weight: bold;
      color: var(--gray);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
    }

    .consulting-title::before,
    .consulting-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--gray);
      margin: 0 20px;
    }

    .consulting-title i {
      font-size: clamp(24px, 5vw, 48px);
      color: var(--gray);
    }

    .consulting-steps {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      justify-content: center;
      align-items: center;
    }


    @keyframes slideIn {
      0% { transform: translateX(-50px); opacity: 0; }
      100% { transform: translateX(0); opacity: 1; }
    }

    .consulting-step i {
      font-size: clamp(24px, 5vw, 40px);
      color: var(--gold);
      margin-bottom: 15px;
      transition: color 0.3s ease;
    }


    .consulting-step::before {
      content: attr(data-step);
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--white);
      border-radius: 30px;
      width: auto;
      height: auto;
      padding: 8px 16px;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
    }

    .process-arrow {
      font-size: 18px;
      color: var(--gold);
      animation: blinkArrow 1s infinite;
      align-self: center;
    }

    @keyframes blinkArrow {
      0% { opacity: 0.5; }
      50% { opacity: 1; }
      100% { opacity: 0.5; }
    }


    .privacy-policy-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .modal-wrapper {
      position: relative;
      width: 90%;
      max-width: 800px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: var(--blurred-beige);
      border: 4px solid var(--thick-gold);
      padding: 20px;
      max-height: 80vh;
      overflow-y: auto;
      border-radius: 8px;
      color: var(--gray);
      font-family: 'Noto Sans KR', sans-serif;
    }

    .modal-content h2 {
      font-size: clamp(16px, 3vw, 24px);
      font-weight: bold;
      text-align: center;
      color: var(--gray);
      margin-bottom: 20px;
      border-bottom: 3px solid var(--thick-gold);
      padding-bottom: 10px;
    }

    .modal-content h3 {
      font-size: clamp(14px, 2.5vw, 18px);
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .modal-content p {
      font-size: clamp(12px, 2vw, 16px);
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .modal-content ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .modal-content li {
      font-size: clamp(12px, 2vw, 16px);
      line-height: 1.6;
      margin-bottom: 5px;
    }

    .close-btn {
      position: absolute;
      top: -15px;
      right: -15px;
      font-size: 2em;
      cursor: pointer;
      color: #000;
      background-color: #fff;
      padding: 5px 10px;
      border-radius: 50%;
      border: 1px solid #000;
      z-index: 2001;
      box-shadow: 0 0 5px rgba(0,0,0,0.3);
    }


/*case*/

    .case-section {
      position: relative;
      text-align: center;
      height: 65vh;
      margin-top: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1;
    }

    .case-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    }

    .case-background.active {
      visibility: visible;
      opacity: 1;
    }

    .case-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .case-text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      width: 80%;
      max-width: 800px;
    }


    .case-text-middle {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(18px, 3vw, 26px);
      color: var(--white);
      white-space: nowrap;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .case-text-middle span {
      display: block;
      margin: 10px 0;
    }

    .highlight-text {
      font-size: clamp(20px, 3.5vw, 30px); 
      font-weight: bold;
    }

    .case-message {
      /* background: var(--gold); */
      color: var(--gray);
      font-size: clamp(18px, 4vw, 30px);
      font-weight: bold;
      padding: 15px 30px;
      border-radius: 10px;
      margin: 20px auto;
      max-width: 1200px;
      text-align: center;
    }

    .case-message span {
      display: inline;
    }

    .case-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      justify-content: flex-start;
      width: 100%;
      /* max-width: 1440px; */
      /* margin: 40px auto; */
    }

    .case-card {
      flex: 0 0 calc(33.333% - 20px);
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      padding: 16px;
      background: var(--white);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .case-card:hover {
      transform: scale(1.05);
    }

    .case-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .case-card h3 {
      color: var(--gray);
      margin: 12px;
      font-weight: bold;
      text-align: center;
    }

    .case-card h3 span:nth-child(2) {
      display: block; 
    }

    .case-card p {
      color: var(--dark-gray);
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .privacy-policy-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .modal-wrapper {
      position: relative;
      width: 90%;
      max-width: 800px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: var(--blurred-beige);
      border: 4px solid var(--thick-gold);
      padding: 20px;
      max-height: 80vh;
      overflow-y: auto;
      border-radius: 8px;
      color: var(--gray);
      font-family: 'Noto Sans KR', sans-serif;
    }

    .modal-content h2 {
      font-size: 1.5em;
      font-weight: bold;
      text-align: center;
      color: var(--gray);
      margin-bottom: 20px;
      border-bottom: 3px solid var(--thick-gold);
      padding-bottom: 10px;
    }

    .modal-content h3 {
      font-size: 1.2em;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .modal-content p {
      font-size: 0.9em;
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .modal-content ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .modal-content li {
      font-size: 0.9em;
      line-height: 1.6;
      margin-bottom: 5px;
    }

    .close-btn {
      position: absolute;
      top: -15px;
      right: -15px;
      font-size: 2em;
      cursor: pointer;
      color: #000;
      background-color: #fff;
      padding: 5px 10px;
      border-radius: 50%;
      border: 1px solid #000;
      z-index: 2001;
      box-shadow: 0 0 5px rgba(0,0,0,0.3);
    }


/*branch*/
    .branch-section {
      position: relative;
      text-align: center;
      height: 50vh;
      margin-top: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      z-index: 1;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .branch-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease;
    }

    .branch-background.active {
      visibility: visible;
      opacity: 1;
    }

    .branch-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .branch-text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      width: 80%;
      color: #fff;
    }


    .branch-text-middle {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(18px, 3vw, 26px);
      color: var(--white);
      white-space: nowrap;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .branch-text-middle span {
      display: block;
      margin: 10px 0;
    }

    .highlight-text {
      font-size: clamp(20px, 3.5vw, 30px);
      font-weight: bold;
    }

.branch-info-area{}
.branch-info{
    gap: 28px;
    display: flex;
    width: 100%;
    justify-content: center;
}
.branch-info li{
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 16px;
    flex: 1;
    align-content: center;
    border: 1px solid var(--gold);
    padding: 32px;
    border-radius: 16px;
}


    .branch-info li .icon {
      font-size: 30px;
      margin-bottom: 10px;
      display: block;
      color: var(--gold);
    }



    .branch-info li .number {
      font-size:  40px;
      font-weight: 800;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }

    .branch-info li .text {
      font-size: 16px;
      font-weight: 700;
      color: var(--gray);
      font-family: 'Montserrat', sans-serif;
    }

.branch-info-text{text-align: center;margin-top: 40px;font-size: 18px;line-height: 1.5;}
    .info-table-section {
      position: relative;
      text-align: center;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
    }

    .info-table {
      width: 100%;
      max-width: 900px;
      border-collapse: collapse;
      font-family: 'Montserrat', sans-serif;
      margin: 0 auto;
    }

    .info-table th,
    .info-table td {
      padding: 20px;
      border: 1px solid var(--border-gray);
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      font-family: 'Montserrat', sans-serif;
    }

    .info-table th {
      background: var(--dark-gold-bg);
      color: var(--white);
      font-weight: bold;
      font-size: clamp(28px, 4vw, 44px);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
      font-family: 'Montserrat', sans-serif;
    }

    .info-table td {
      background: transparent;
      color: var(--deep-gray);
      font-size: clamp(14px, 2vw, 18px);
      font-family: 'Montserrat', sans-serif;
    }

    .info-table td.light-gray {
      background: var(--light-gray-bg);
    }

    .info-table td.medium-gray {
      background: var(--light-gray-bg);
    }

    .info-table td .number {
      font-size: clamp(24px, 4vw, 40px);
      font-weight: 800;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }

    .info-table td .text {
      font-size: clamp(12px, 1.8vw, 16px);
      font-weight: 700;
      color: var(--gray);
      font-family: 'Montserrat', sans-serif;
    }

    .info-table td .icon {
      font-size: clamp(20px, 3vw, 30px);
      margin-bottom: 10px;
      display: block;
      color: var(--gray);
    }

    .info-table tr:last-child td {
      background: rgba(85, 85, 85, 0.8);
      color: var(--white);
      font-weight: 500;
      font-size: 16px;
      white-space: normal;
      word-wrap: break-word;
      line-height: 1.9;
      font-family: 'Montserrat', sans-serif;
    }

    .info-table tr:last-child td span {
      display: block;
    }

    .privacy-policy-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .modal-wrapper {
      position: relative;
      width: 90%;
      max-width: 800px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: var(--blurred-beige);
      border: 4px solid var(--thick-gold);
      padding: 20px;
      max-height: 80vh;
      overflow-y: auto;
      border-radius: 8px;
      color: var(--gray);
      font-family: 'Noto Sans KR', sans-serif;
    }

    .modal-content h2 {
      font-size: 1.5em;
      font-weight: bold;
      text-align: center;
      color: var(--gray);
      margin-bottom: 20px;

      border-bottom: 3px solid var(--thick-gold);
      padding-bottom: 10px;
    }

    .modal-content h3 {
      font-size: 1.2em;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .modal-content p {
      font-size: 0.9em;
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .modal-content ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .modal-content li {
      font-size: 0.9em;
      line-height: 1.6;
      margin-bottom: 5px;
    }

    .close-btn {
      position: absolute;
      top: -15px;
      right: -15px;
      font-size: 2em;
      cursor: pointer;
      color: #000;
      background-color: #fff;
      padding: 5px 10px;
      border-radius: 50%;
      border: 1px solid #000;
      z-index: 2001;
      box-shadow: 0 0 5px rgba(0,0,0,0.3);
    }

    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }


/*faq*/

    .faq-section {
      position: relative;
      text-align: center;
      height: 60vh;
      margin-top: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      z-index: 1;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .faq-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0;
      visibility: hidden;
      transition: opacity 2s ease-in-out, visibility 2s ease-in-out;
    }

    .faq-background.active {
      visibility: visible;
      opacity: 1;
    }

    .faq-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .faq-text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      width: 80%;
      max-width: 800px;
    }

    .faq-text-middle {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(18px, 3vw, 26px);
      color: var(--white);
      white-space: nowrap;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .faq-text-middle span {
      display: block;
      margin: 10px 0;
    }

    .faq-items {
      width: 100%;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 28px;
      transition: transform 0.3s ease;
      border: 1px solid var(--light-gray);
      border-radius: 16px;
      overflow: hidden;
    }

    .faq-item:hover {
      transform: translateY(-5px);
    }

    .faq-item h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--gray);
      padding: 20px;
      background: var(--soft-gold);
      cursor: pointer;
      transition: background 0.3s ease;
    }


    .faq-item p {
      font-size: 16px;
      font-weight: 400;
      color: var(--deep-gray);
      padding: 20px;
      background: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      max-height: 500px;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.5s ease;
    }

    .faq-item.closed p {
      max-height: 0;
      padding: 0 20px;
    }

   

    .privacy-policy-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .modal-wrapper {
      position: relative;
      width: 90%;
      max-width: 800px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: var(--blurred-beige);
      border: 4px solid var(--thick-gold);
      padding: 20px;
      max-height: 80vh;
      overflow-y: auto;
      border-radius: 8px;
      color: var(--gray);
      font-family: 'Noto Sans KR', sans-serif;
    }

    .modal-content h2 {
      font-size: clamp(16px, 3vw, 24px);
      font-weight: bold;
      text-align: center;
      color: var(--gray);
      margin-bottom: 20px;
      border-bottom: 3px solid var(--thick-gold);
      padding-bottom: 10px;
    }

    .modal-content h3 {
      font-size: clamp(14px, 2.5vw, 18px);
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .modal-content p {
      font-size: clamp(12px, 2vw, 16px);
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .modal-content ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .modal-content li {
      font-size: clamp(12px, 2vw, 16px);
      line-height: 1.6;
      margin-bottom: 5px;
    }

    .close-btn {
      position: absolute;
      top: -15px;
      right: -15px;
      font-size: 2em;
      cursor: pointer;
      color: #000;
      background-color: #fff;
      padding: 5px 10px;
      border-radius: 50%;
      border: 1px solid #000;
      z-index: 2001;
      box-shadow: 0 0 5px rgba(0,0,0,0.3);
    }

    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }


.content-title{font-size: 38px;font-weight: 600;text-align: center;margin-bottom: 38px;}

.content_sub_text{font-size: 32px;     font-weight: 600;}


/* 공통 메뉴별 상단이미지+텍스트영역*/
.main-image-section {
  position: relative;
  text-align: center;
  height: 50vh;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.main-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.main-image-background.active {
  visibility: visible;
  opacity: 1;
}

.section_text_contain{font-family: 'Montserrat', sans-serif;color: var(--white);}

.section_title_contain{}

.section_title{    font-size: 40px;   }

.section_title_sub{    font-size: 16px;    font-weight: 400;    color: rgba(212, 175, 55, 1);    margin-bottom: 2px;
}
.section_text_sub{    margin-top: 20px;    font-size: 18px;}




@media (max-width: 768px) {
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 16px;
    }
	.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;}
	
	nav {
    background: rgba(0, 0, 0, 0.5);
    height: 60px;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;}
	
	.nav-logo span {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}
	.main-image-section {
  position: relative;
  text-align: center;
  height: 40vh;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

	 .branch-section {
      position: relative;
      text-align: center;
      height: 40vh;
      margin-top: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      z-index: 1;
    }
	
.section_title{font-size: 24px;}

.section_title_sub{font-size: 14px;font-weight: 400;color: rgba(212, 175, 55, 1);margin-bottom: 2px;}
.section_text_sub{margin-top: 20px;font-size: 14px;}

	
    .main-section {
        min-height: 40vh;
    }
    .main-content h1 {
        font-size: 20px;
    }
    .main-content .typing {
        font-size: 20px;
    }
    .main-content .bottom-text {
        font-size: 20px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--gray);
        padding: 28px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links.active .submenu {
        display: none;
        position: static;
        width: 100%;
        background: var(--gray);
        padding: 0;
        transform: none;
        opacity: 1;
    }
    .nav-links.active .nav-item:hover .submenu {
        display: block;
    }

	.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    line-height: 1.6;
    padding: 0px 16px;
    cursor: pointer;
    text-align: center;
}
    .submenu a {
        font-size: 14px;
        /* padding: 8px 20px; */
    }
    .menu-toggle {
        display: block;
    }
    .footer-address {
        font-size: 0.7em;
    }
    .footer p {
        font-size: 0.8em;
    }
    .floating-buttons a {
        width: 48px;
        height: 48px;
        font-size: 1em;
    }
    .floating-buttons .consult-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    .card {
        flex: 0 0 calc(48vw - 20px);
        margin: 0 10px;
        padding: 12px;
        width: calc(48vw - 20px);
        height: 240px;
    }
    .card-slider {
        max-width: 100%;
        padding: 0 20px;
        overflow: visible;
    }
    .card-icon {
        font-size: 32px;

        margin-bottom: 12px;
    }
    .card h3 {
        font-size: 16px;
    }
    .card p {
        font-size: 12px;
    }
    .slider-controls {
        width: 100%;
    }
    .slider-controls button {
        font-size: 18px;
        width: 36px;
        height: 36px;
    }
    .slider-controls .prev-btn {
        left: 5px;
    }
    .slider-controls .next-btn {
        right: 5px;
    }
    .growth-text .line1 .normal,
    .growth-text .line2 .normal {
        font-size: clamp(12px, 3.5vw, 16px);
    }
    .growth-text .highlight {
        font-size: clamp(24px, 6.5vw, 32px);
    }
    .statistics-section {
    }
    .stat-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        display: flex;
        justify-content: space-around;
        flex-wrap: nowrap;
    }
    .stat-item {
        flex: 1;
        padding: 15px 0;
        width: 100%;
        /* height: 200px; */
        margin: 0;
    }
    .stat-item .large-text {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .stat-item .small-text {
        font-size: 16px;
    }
    .circle-graph {
        width: 80px;
        height: 80px;
    }
    .circle-graph .percentage {
        font-size: 16px;
    }
    .circle-graph circle {
        stroke-width: 6;
    }
    .live-application-section {
        padding: 24px 16px;
        margin-bottom: 20px;
    }
    .live-application-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .application-list {
        height: 300px;
    }
    .application-header,
    .application-item {
        font-size: 14px;
        padding: 8px 5px;
        justify-content: space-between;
    }
    .application-header span {
        flex: 0 0 15%;
        text-align: center;
        min-width: 60px;
        padding: 0;
        white-space: normal;
        word-break: break-all;
    }
    .solution-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .solution-section h2 {
        font-size: 20px;
        text-align: center;
    }
    .solution-card {
        flex: 0 0 calc(33.33% - 8px);
        margin: 0 5px;
        height: 320px;
    }

    .solution-card img {
        height: 240px;
    }
    .card-text {
        padding: 10px 0;
    }
    .text-top {
        font-size: 16px;
    }
    .text-bottom {
        font-size: 14px;
    }
    .consulting-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 10px;
    }
    .consulting-process {
        flex-direction: column;
        align-items: center;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
        display: none;
    }
    .consulting-step {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        position: relative;
        flex: 1;
    }
    .consulting-step::before {
        border-radius: 12px;
        width: auto;
        height: auto;
        padding: 4px 10px;
        font-size: 12px;
        top: -15px;
    }
    .process-arrow {
        display: none;
    }
    .consulting-step i {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .consulting-step h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .consulting-step p {
        font-size: 12px;
    }
    .consulting-title {
        font-size: 24px;
        text-align: center;
        white-space: nowrap;
    }
    .consulting-title i {
        font-size: 30px;
    }
    .consulting-title span {
        display: inline-block;
    }
    .application-form {
        padding: 24px 16px;
    }
    .application-form h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
	.form-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 20px; */
    /* margin-top: 20px; */
}
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    .form-group label {
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 17px;
        padding: 12px 16px;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        font-size: 14px;
    }
    .form-group textarea {
        min-height: 120px;
    }
    .form-checkbox label {
        font-size: 15px;
    }
    .submit-button {
        font-size: 14px;
        padding: 10px 20px;
        margin: 8px 0 0 0;
    }
	
	
.area-01 {
    background: var(--white);
    padding: 30px 0;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
}

.area-02 {
    background: var(--soft-gold);
    padding: 30px 0;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
}

.area-03 {
    background: var(--bg-gold);
    padding: 30px 0;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
}
	
.content-title{font-size: 20px;font-weight: 600;text-align: center;margin-bottom: 20px;}
.content_sub_text{font-size: 20px;font-weight: 600;}
	 .faq-item {
      margin-bottom: 16px;
      transition: transform 0.3s ease;
      border: 1px solid var(--light-gray);
      border-radius: 16px;
      overflow: hidden;
    }
	.faq-item h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--gray);
      padding: 12px 16px;
      background: var(--soft-gold);
      cursor: pointer;
      transition: background 0.3s ease;
    }


    .faq-item p {
      font-size: 14px;
      font-weight: 400;
      color: var(--deep-gray);
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      max-height: 500px;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.5s ease;
    }

    .faq-item.closed p {
      max-height: 0;
      padding: 0 20px;
    }


	.case-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-start;
      width: 100%;
      /* max-width: 1440px; */
      /* margin: 40px auto; */
      flex-direction: column;
    }

    .case-card {
      flex: 1;
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      padding: 16px;
      background: var(--white);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .case-card:hover {
      transform: scale(1.05);
    }

    .case-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

	.consulting-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-start;
      align-items: center;
      flex-direction: column;
      width: 100%;
    }

	
    .why-zipuragi-section {
      \: 60px auto;
      text-align: center;
    }

    .why-zipuragi-title-container {
      border-bottom: 4px solid var(--gold);
      padding-bottom: 15px;
      display: inline-block;
      margin-bottom: 30px;
    }

    .why-zipuragi-title {
      font-family: 'Noto Sans KR', sans-serif;
      font-size: clamp(24px, 5vw, 36px);
      font-weight: bold;
      color: var(--gray);
      margin: 0;
    }

    .why-zipuragi-list-container {
      border: 5px solid var(--gold);
      border-radius: 10px;
      padding: 30px;
      max-width: 900px;
      margin: 0 auto 30px;
      background: var(--white);
    }

    .why-zipuragi-list-wrapper {
      margin: 0 auto;
      text-align: left;
    }

    .why-zipuragi-list {
      list-style: none;
      margin: 0;
      display: flex;
      justify-content: space-evenly;
      width: 100%;
      gap: 16px;
      flex-direction: column;
      align-items: center;
    }

    .why-zipuragi-list li {
      \: 'Noto Sans KR', sans-serif;
      font-size: 16px;
      color: var(--gray);
      margin-bottom: 0;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-direction: column;
      text-align: center;
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      width: 100%;
      height: 100%;
      justify-content: center;
    }

    .why-zipuragi-list li.top {
      font-size: clamp(18px, 3.5vw, 24px);
      margin-bottom: 20px;
      justify-content: center;
      text-align: center;
      white-space: nowrap;
    }

    .why-zipuragi-list li.top::before {
      content: none;
    }

    .why-zipuragi-list li::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      display: inline-block;
    }

    .why-zipuragi-list li.check::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--gold);
      font-size: 40px;
      width: auto;
      height: auto;
      background: none;
    }

    .why-zipuragi-table {
      width: 100%;
      /* max-width: 1000px; */
      margin: 40px auto;
      border-collapse: collapse;
      background: var(--white);
      /* box-shadow: 0 2px 5px var(--shadow); */
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #ddd;
    }

    .why-zipuragi-table th {
      padding: 16px;
      text-align: center;
      border-bottom: 1px solid var(--border-gray);
      background: var(--gold);
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
    }

    .why-zipuragi-table td {
      padding: 16px 16px 16px 16px;
      text-align: center;
      border-bottom: 1px solid var(--border-gray);
      font-size: 16px;
      color: var(--gray);
    }

    .why-zipuragi-table td:first-child::before {
      content: none;
    }

    .why-zipuragi-text-container {
      max-width: 800px;
      margin: 30px auto;
    }

    .why-zipuragi-text {
      font-family: 'Noto Sans KR', sans-serif;
      font-size: clamp(20px, 4vw, 28px);
      font-weight: bold;
      color: var(--gray);
      margin: 0;
      text-align: center;
    }

    .why-zipuragi-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .why-zipuragi-button {
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 500;
      color: var(--white);
      background: var(--gold);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .why-zipuragi-button::before {
      content: '\f058';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--white);
    }

    .why-zipuragi-button:hover {
      background: var(--bright-gold);
      transform: scale(1.05);
    }

	
.floating-buttons {
    position: fixed;
    right: 8px;
    bottom: -61px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.floating-buttons a:hover {
    transform: scale(1.1);
}
.floating-buttons .consult-btn {
    background: var(--muted-mint);
    border-radius: 10px;
    font-size: 12px;
    color: var(--white);
    flex-direction: column;
    line-height: 1.2;
    padding: 0;
    text-align: center;
}
.floating-buttons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*startup_fund*/

        .fund-content {
            padding: 16px;
            background: var(--blurred-beige);
            border: 1px solid var(--gold);
            border-radius: 16px;
            color: var(--gray);
        }

        .fund-content h2 {
            font-size: 1.3em;
            font-weight: bold;
            text-align: center;
            color: var(--gray);
            margin-bottom: 20px;
            border-bottom: 3px solid var(--thick-gold);
            padding-bottom: 10px;
        }

        .fund-content h3 {
            font-size: 18px;
            margin-top: 24px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .fund-content p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .fund-content ul {
            list-style-type: disc;
            padding-left: 20px;
        }

        .fund-content li {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

	
.index-consulting-process {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    justify-content: center;
    width: 100%;
    position: relative;
    border-radius: 16px;
    flex-direction: column;
}
.process-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}
.consulting-step {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideIn 0.5s ease-in-out forwards;
    position: relative;
}
.consulting-step:hover {
    transform: scale(1.05);
    background-color: var(--gold);
}
	.consulting-case-cards {
      display: flex;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      justify-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 20px auto;
      flex-direction: column;
    }

    .consulting-case-cards .case-card {
      width: 100%;
      border: 1px solid var(--light-gray);
      border-radius: 16px;
      padding: 16px;
      background: var(--white);
      text-align: center;
      transition: transform 0.3s ease;
    }

	.branch-info{
    gap: 12px;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: row;
}
.branch-info li{
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 16px;
    flex: 1;
    align-content: center;
    border: 1px solid var(--gold);
    padding: 16px;
    border-radius: 16px;
}


    .branch-info li .icon {
      font-size: 24px;
      margin-bottom: 8px;
      display: block;
      color: var(--gold);
    }



    .branch-info li .number {
      font-size: 20px;
      font-weight: 800;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }

    .branch-info li .text {
      font-size: 14px;
      font-weight: 700;
      color: var(--gray);
      font-family: 'Montserrat', sans-serif;
    }
.branch-info-text{text-align: center;margin-top: 30px;font-size: 16px;line-height: 1.5;}
   
    .greeting-section {
      position: relative;
      padding: 16px;
      width: 100%;
      background: url('images/intro/ii1.jpg') no-repeat center;
      background-size: cover;
      background-color: rgba(255, 255, 251, 0.9);
      background-blend-mode: overlay;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      z-index: 1;
      border-left: 5px solid var(--gold);
    }

    .greeting-section h2 {
      font-size: 20px;
      color: var(--gray);
      text-align: center;
      margin-bottom: 16px;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 12px;
    }

    .greeting-content {
      color: #333;
      line-height: 1.8;
      text-align: center;
    }


.ceo-content{
    width: 100%;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.ceo-divide{
    border-top: 1px solid var(--gold);
    padding-top: 20px;
    margin-top: 20px;
}
.ceo-content p{
	line-height:1.8;
	font-size: 16px;
	margin-bottom: 16px;
}
.ceo-content img{width:100%;border-radius: 16px;}
.ceo-left{
    flex: 1;
}
.ceo-right{flex: 1;}


 .ceo-content .greeting-signature {
      font-size: 16px;
      color: var(--gold);
      text-align: left;
      margin-top: 30px;
      padding-right: 20px;
    }
    .greeting-content strong {
      font-weight: 700;
      color: #222;
    }

    .greeting-content br {
      display: block;
      margin: 10px 0;
    }

    .greeting-signature {
      font-size: 16px;
      color: var(--gold);
      text-align: center;
      margin-top: 30px;
      padding-right: 20px;
    }
}
