/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mo-br {
    display: none 
}
.pc-br {
    display: inherit
}

html {
    /* scroll-snap-align removed */
    /* scroll-snap-stop removed */
    /* Re-enabled for smooth snapping -> Removed */
    /* scroll-behavior: smooth; */
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
}

body {
    font-family: 'NanumSquare', sans-serif;
    color: #fff;
    background-color: #000;
    /* Native scroll managed by browser */
    min-height: 100vh;
    margin: 0;
}

/* Page wrapper removed from HTML, style ignored */
.page-wrapper {
    display: contents;
    /* Just in case */
}

/* page-wrapper removed */

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    /* Initially transparent */
    transition: background-color 0.3s ease;
    /* Smooth transition */
}

/* Header Background on Hover or Scroll */
.main-header:hover,
.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    /* 70% opacity black as requested */
}

.logo {
    display: flex;
    align-items: center;
    height: 30px;
    /* Increased slightly from 25px */
    position: relative;
    top: -5px;
    /* Move up 5px as requested */
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.main-nav>ul {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* ... existing styles ... */



.main-nav>ul>li {
    position: relative;
    padding: 10px 0;
    text-align: center;
}

.main-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s;
    display: block;
    padding-bottom: 20px;
    position: relative;
}

/* Specific style for Top Level Menu (Request: has-submenu ?메뉴?-> Applying to all top level for consistency) */
.main-nav>ul>li>a {
    font-size: 1.15rem;
    /* Slightly smaller */
    font-weight: 800;
    padding-top: 0;
    /* Move down slightly */
}

.main-nav>ul>li:hover>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #da8c04;
    /* Restored yellow/orange underline */
}

.main-nav a:hover {
    color: #da8c04;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    /* Restore to transparent, layout only */
    background-color: transparent;
    padding: 30px 0;
    border: none;
    border-radius: 0;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.submenu::before {
    content: '';
    position: absolute;
    top: 20px;
    /* Push down to avoid overlap with header padding area */
    left: -500vw;
    width: 1000vw;
    height: calc(100% - 20px);
    /* Adjust height */
    background-color: rgba(0, 0, 0, 0.5);
    /* Full width black background with 50% opacity */
    z-index: -1;
}

.main-nav li:hover .submenu {
    display: flex;
}

.submenu li {
    padding: 0;
    display: block;
    text-align: center;
}

.submenu li a {
    padding: 3px 0;
    /* Reduced padding */
    font-size: 0.95rem;
    font-weight: 400;
    color: #ccc;
    opacity: 1;
    white-space: nowrap;
}

.submenu li a:hover {
    color: #da8c04;
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    z-index: 1002;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.mobile-logo {
    display: flex;
    align-items: center;
    height: 24px;
    /* Reduced further as requested */
}

.mobile-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu-list>li {
    border-bottom: 1px solid #222;
}

.mobile-menu-list>li>a {
    padding: 15px 0;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu {
    display: none;
    background-color: #1a1a1a;
    margin-bottom: 10px;
    padding-left: 10px;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li a {
    padding: 8px 0;
    /* Reduced padding significantly */
    font-size: 1rem;
    color: #aaa;
    display: block;
}

/* Hero Section */

/* Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* Smooth Fade */
}

.slide.active {
    opacity: 1;
}

/* Overlay for darkening slider images */
/* Overlay for darkening slider images - REMOVED */
.hero-slider::after {
    display: none;
    /* 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2; 
    */
}

.hero-section::before {
    /* Remove old static overlay */
    display: none;
}

/* Slider Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    /* Above overlay(2) and content(10) */
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid transparent;
    /* Prevent layout shift */
}

.dot.active {
    background-color: #da8c04;
    /* Point color */
    transform: scale(1.1);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustment for nav */
@media (max-width: 768px) {
	.pc-br {
        display:none !important
    }
	 .mo-br {
        display: inline !important;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    /* Move content up on mobile due to bottom fixed menu */
    .hero-content {
        transform: translateY(-20px);
    }

    .slider-dots {
        bottom: 100px;
        /* Move dots up above the fixed menu */
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.brand-logo-container {
    display: inline-block;
    padding: 20px;
}

.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.logo-box img {
    max-width: 80%;
    /* Limit size */
    height: auto;
    display: block;
}

/* Old Grid/Char Styles Removed/Hidden */
.logo-box .char,
.c1,
.c2,
.c3,
.c4,
.logo-box::after {
    display: none;
}

.c1 {
    text-align: right;
    border-right: 2px solid white;
    padding-right: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid white;
}

.c2 {
    text-align: left;
    padding-left: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid white;
}

.c3 {
    text-align: right;
    border-right: 2px solid white;
    padding-right: 15px;
    padding-top: 15px;
}

.c4 {
    text-align: left;
    padding-left: 15px;
    padding-top: 15px;
}

/* Quick Menu */
.quick-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 100px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.qm-header {
    display: block;
    /* Ensure block layout for <a> tag */
    text-decoration: none;
    /* Remove underline */
    background-color: #5D3A78;
    color: white;
    padding: 15px 5px;
    transition: background-color 0.3s;
    /* Optional hover effect */
}

.qm-header:hover {
    background-color: #4a2e60;
    /* Slightly darker on hover */
}

.qm-header .small-text {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.qm-header .phone-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.qm-list {
    background-color: rgba(255, 255, 255, 0.9);
}

.qm-list li {
    border-bottom: 1px solid #eee;
}

.qm-list li:last-child {
    border-bottom: none;
}

.qm-list a {
    display: block;
    padding: 15px 5px;
    color: #333;
    transition: background 0.2s;
}

.qm-list a:hover {
    background-color: #f5f5f5;
    color: #da8c04;
    /* Change text color on hover */
}

.qm-list a:hover .icon {
    color: #da8c04;
    /* Change icon color on hover */
}

.qm-list .icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
    display: flex;
    /* Flex to center image */
    justify-content: center;
    align-items: center;
}

.kakao-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 4px;
    /* Slight rounding if needed */
}

.qm-list span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
}

.fa-comment {
    color: #3C1E1E;
    transition: color 0.2s;
}

/* Ensure specific icons also change color */
.qm-list a:hover .icon i,
.qm-list a:hover .fa-comment {
    color: #da8c04;
}

/* Hero Section */

.hero-section {
    height: 100vh;
    width: 100%;
    /* Background removed, managed by slider */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Contain slides */
    /* scroll-snap removed */
}

/* --- Brand Story Section Styles --- */
.brand-story {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    /* Fixed height for slide */
    background-color: #111;
    display: flex;
    align-items: flex-start;
    /* Moved from center to top */
    padding-top: 15vh;
    /* Adjust vertical position */
    overflow: hidden;
    color: #fff;
    /* scroll-snap removed */
}

.brand-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-image: url('/assets/brand_bg.png');
    background-size: cover;
    background-position: left center;
    z-index: 1;
}

.brand-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, #111 90%);
}

.brand-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding: 50px;
}

.brand-text-group {
    width: 65%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 60px;
    padding-top: 0;
    /* Moved up by removing padding */
}

.title-area {
    position: relative;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: -50px;
    /* Move up */
    /* Removed translate and gap to handle positioning precisely */
}

.story-text-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-bottom: 0;
    margin-top: 300px;
    /* Further increased */
    padding-top: 20px;
    /* Added padding to ensure separation */
    /* Move down significantly */
}

.vertical-title {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 4rem;
    font-family: 'NanumSquare', sans-serif;
    font-weight: 700;
    letter-spacing: -2px;
    /* Tighten spacing significantly as requested */
    color: #fff;
    line-height: 1.5;
    margin-top: 90px;
    /* Increased by 30px */
    position: relative;
    /* To stack above SVG */
    z-index: 10;
}

.v-space {
    font-size: 0.5em;
    /* Reduce gap size */
}

.circle-text-svg {
    position: absolute;
    top: 0px;
    /* Moved down from -50px */
    left: -60px;
    width: 140px;
    height: 140px;
    animation: rotateCircle 20s linear infinite;
    z-index: 1;
    /* Lower than title */
}

.circle-text-svg text {
    font-size: 10px;
    /* Reduced font size */
    fill: #666;
    letter-spacing: 2px;
    font-family: 'NanumSquare', sans-serif;
    font-weight: 600;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
        /* Counter-clockwise or Match image direction? Usually CW. Let's stick to CW 360 unless image suggested otherwise. Let's keep 360deg for now, but usually 'forward' reading text implies CW. */
        transform: rotate(360deg);
    }
}

.brand-main-title {
    font-family: 'NanumSquare', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 50px;
    margin-top: -100px;
    /* Moved up further as requested */
    line-height: 1.3;
    /* Initial State for Scroll Reveal */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.brand-main-title img {
    max-width: 100%;
    /* More larger on PC */
    height: auto;
    display: block;
}

.brand-main-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Brand Description Image Style */
/* Brand Description Text Restored */
.brand-description p {
    font-family: 'NanumSquare', sans-serif;
    font-size: 1.2rem;
    margin-left: 100px;
    /* Requested 100px margin */
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
    /* Reveal Animation Init */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.brand-description p.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Paragraphs */
.brand-description p:nth-child(1) {
    transition-delay: 0.2s;
}

.brand-description p:nth-child(2) {
    transition-delay: 0.4s;
}

.brand-description p:nth-child(3) {
    transition-delay: 0.6s;
}

/* Visible State is handled via JS adding .visible class */
.brand-description p.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* Increased gap */
    padding: 3px 20px 7px;
    /* Box padding */
    color: #fff;
    font-size: 0.9rem;
    /* Smaller text */
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    border: 1px solid #fff;
    /* Requested border */
    border-radius: 0;
    /* No rounded corners */
    width: fit-content;
    text-decoration: none;
    margin-left: 100px;
    /* Initial State */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.8s, transform 0.8s ease-out 0.8s, color 0.3s, border-color 0.3s;
    /* Added border-color transition */
}

.btn-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-detail:hover {
    color: #da8c04;
    border-color: #da8c04;
    /* Change border color on hover */
}

.btn-line {
    width: 0;
    /* Start with 0 width for drawing effect */
    height: 2px;
    background-color: #fff;
    display: inline-block;
    transition: width 0.3s ease, background-color 0.3s;
}

.btn-detail:hover .btn-line {
    width: 40px;
    /* Draw line on hover */
    background-color: #da8c04;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .menu2-desc {
        font-size: 1rem !important;
    }

    .notice-container2 h2 {
        font-size: 1.7em !important
    }

    .notice-container h2 {
        font-size: 1.7em !important
    }

    .notice-container h3 {
        padding-bottom: 40px;
        font-size: 16px;
        letter-spacing: -1px
    }

    /* html, body overflow rule removed to prevent double scrollbars */

    .page-wrapper {
        display: contents;
    }

    .main-header {
        top: 0;
        /* Move down 5px */
        padding: 15px 20px;
        /* Slightly larger */
    }

    .logo {
        height: 22px;
        /* Smaller than PC (30px) */
        top: 2px;
        /* Moved down (PC was -5px) */
    }

    /* Brand Story - Allow scroll past it */
    .brand-story {
        min-height: 100vh;
        height: auto !important;
        overflow: visible;
        scroll-snap-align: start;
        /* Snap on entry */
        padding-bottom: 50px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-box {
        font-size: 3rem;
    }

    /* Mobile Quick Menu Styling */
    .quick-menu {
        display: block;
        /* Show in mobile */
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        transform: none;
        background: transparent;
        box-shadow: none;
        z-index: 1000;
        pointer-events: none;
        /* Let clicks pass through empty spaces */
    }

    /* Floating Call/Enquiry Button */
    .qm-header {
        position: absolute;
        bottom: 90px;
        right: 20px;
        width: auto;
        min-width: 70px;
        /* Reduced from 110px and 85px */
        border-radius: 20px;
        /* Slightly less rounded for multi-line */
        background-color: #5D3A78;
        /* Changed to Purple */
        box-shadow: 0 4px 15px rgba(93, 58, 120, 0.4);
        /* Purple shadow */
        padding: 10px 10px;
        /* Reduced padding */
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        /* Stack vertically */
        justify-content: center;
        align-items: center;
        gap: 2px;
        animation: pulse 2s infinite;
        text-align: center;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(93, 58, 120, 0.7);
        }

        70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 10px rgba(93, 58, 120, 0);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(93, 58, 120, 0);
        }
    }

    .qm-header .small-text {
        font-size: 0.8rem;
        margin-bottom: 5px;
        /* Added spacing */
        margin-top: 5px;
        /* Added spacing */
        font-weight: 500;
        display: block;
        opacity: 0.9;
        /* Ensure visible */
    }

    .qm-header .phone-number {
        font-size: 1.1rem;
        /* Reduced size */
        display: block;
        margin-left: 0;
        font-weight: 700;
        line-height: 1.1;
    }

    .qm-header br {
        display: block;
        /* Show internal break of phone number */
    }

    /* Bottom Fixed Nav Bar */
    .qm-list {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: #fff;
        width: 100%;
        pointer-events: auto;
        border-top: 1px solid #eee;
        padding-bottom: env(safe-area-inset-bottom);
        /* iPhone X+ safe area */
    }

    .qm-list li {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid #f0f0f0;
    }

    .qm-list li:last-child {
        border-right: none;
    }

    .qm-list a {
        padding: 10px 0;
        font-size: 0.8rem;
    }

    .qm-list .icon {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    /* Resize Kakao Logo on Mobile to match other icons */
    .kakao-logo {
        width: 1.4rem;
        /* Match icon visual weight */
        height: 1.4rem;
    }

    /* Brand Story Responsive */
    .brand-story {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
        /* Remove top padding, let content flow */
        position: relative;
        z-index: 10;
        /* Ensure visibility */
        background-color: #111;
    }

    .brand-bg-image {
        display: none;
        /* Hide bg image on mobile to save space and focus on text, or reduce height significantly */
    }

    .brand-content-wrapper {
        width: 100%;
        height: 100%;
        justify-content: center;
        /* Center vertically if possible */
        padding: 80px 20px 40px;
        /* Add top padding to account for fixed header if needed? No header is transparent. But user asked for 80px margin. */
        display: flex;
        flex-direction: column;
    }

    .brand-text-group {
        width: 100%;
        flex-direction: column;
        margin-top: 40px;
        /* Moved up significantly */
        /* Moved up by 30px */
        align-items: center;
        text-align: center;
        padding-left: 0;
        gap: 30px;
        /* Reduce gap */
        padding-top: 0;
    }

    .story-text-content {
        align-items: center;
        text-align: center;
        padding-bottom: 0;
        margin-top: 60px;
        /* Increased to prevent overlap */
    }

    .title-area {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
        transform: none;
    }

    .vertical-title {
        writing-mode: vertical-rl;
        font-size: 2.5rem;
        /* Increased size */
        margin-top: 65px;
        /* Moved down 20px (was 60px) */
    }

    .circle-text-svg {
        left: 50%;
        margin-left: -70px;
        /* Center horizontally (half of 140px width) */
        top: -20px;
        /* Moved up 30px (was 10px) */
    }

    .brand-main-title {
        font-size: 1.6rem;
        /* Smaller title */
        margin-bottom: 15px;
    }

    .brand-main-title img {
        margin: 0 auto;
        /* Center image on mobile */
    }

    .brand-description p {
        margin-left: 0;
        /* Reset margin on mobile */
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .btn-detail {
        margin-left: 0;
        /* Reset margin on mobile */
    }

    .btn-line {
        width: 25px;
        /* Fixed width on mobile, no animation */
        transition: none;
    }

    .btn-detail:hover .btn-line {
        width: 25px;
        /* No expansion on hover */
    }
}

/* Large Screens */
@media (min-width: 1600px) {
    .brand-main-title {
        font-size: 2rem;
        /* Larger title */
    }

    .brand-description p {
        font-size: 1.2rem;
        /* Updated to match base style */
    }

    .btn-detail {
        font-size: 0.9rem;
    }
}

/* --- Growth Section Styles --- */
.growth-section {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    /* Can be auto or VH depending on need, let's use min-height */
    min-height: 100vh;
    background: linear-gradient(to bottom, #000 0%, #4a255f 100%);
    /* Deep Purple Gradient changed to Black-Purple Gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 100px 20px;
    /* scroll-snap removed */
}

.growth-bg-text {
    position: absolute;
    top: 50%;
    /* Position relative to vertical center for consistent spacing */
    left: 50%;
    transform: translate(-50%, -50%) translateY(-280px);
    /* Moved down 10px more from -290px */
    width: 100%;
    text-align: center;
    font-size: 10rem;
    /* Very large */
    font-weight: 900;
    font-family: 'NanumSquare', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 1vw;
    /* Widen to fill screen width */
}

.growth-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.growth-title {
    font-size: 3rem;
    /* Increased size */
    color: #fff;
    margin-bottom: 130px;
    /* Increased spacing */
    font-family: 'NanumSquare', sans-serif;
    font-weight: 700;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.growth-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.growth-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.growth-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Border bottom for style if needed, image implies simple clean look */
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.growth-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.growth-item:nth-child(1) {
    transition-delay: 0.1s;
}

.growth-item:nth-child(2) {
    transition-delay: 0.3s;
}

.growth-item:nth-child(3) {
    transition-delay: 0.5s;
}

.growth-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.growth-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(218, 140, 4, 0.3));
}

.growth-subtitle {
    font-size: 1.95rem;
    /* Increased size */
    color: #da8c04;
    /* Gold/Orange */
    margin-bottom: 15px;
    font-weight: 800;
    /* Made bolder */
    position: relative;
    padding-top: 30px;
    /* Space for the line */
}

.growth-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    max-width: 90vw;
    /* 270px fixed, but safe on mobile */
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    /* Subtle line */
}

.growth-desc {
    font-size: 1.25rem;
    /* Decreased size */
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive for Growth Section */
@media (max-width: 900px) {
    .growth-bg-text {
        font-size: 5rem;
        top: 40px;
        transform: translateX(-50%);
        /* Reset transform for mobile */
    }

    .growth-grid {
        flex-direction: column;
        align-items: center;
    }

    .growth-item {
        width: 100%;
        margin-bottom: 50px;
    }

    .growth-title {
        font-size: 1.7rem;
        /* Adjusted to 1.7rem */
        margin-bottom: 50px;
        word-break: keep-all;
        /* Prevent awkward breaks */
        line-height: 1.3;
        padding: 0 10px;
        /* Prevent touching edges */
    }

    .growth-subtitle {
        font-size: 1.4rem;
        /* Smaller on mobile */
    }

    .growth-desc {
        font-size: 1rem;
        /* Reduced from 1.25rem */
    }
}

/* --- Menu Section Styles --- */
.menu-section {
    width: 100%;
    background-color: #000;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 80vh;
    /* Adjust as needed */
}

.menu-left {
    width: 50%;
    background-image: url('/assets/menu_bg.jpg');
    /* Use placeholder if asset missing */
    background-color: #222;
    /* Fallback */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px;
    padding-top: 100px;
    /* Base header clearance */
    color: #fff;
}

/* Semi-transparent overlay for text readability */
.menu-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay */
    z-index: 1;
}

.menu-left-content {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    /* Explicit requested spacing */
}

/* Typography Hierarchy */
.menu-title {
    font-family: 'NanumSquare', sans-serif;
    margin-bottom: 40px;
    /* Increased spacing between title and desc */
    word-break: keep-all;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.menu-title .small-title {
    font-size: 3rem;
    /* Increased to match main title size roughly */
    font-weight: 700;
    /* Bold */
    display: block;
    margin-bottom: 0;
    line-height: 1;
    /* Tighten line height to bring them closer */
    color: #fff;
    /* White */
}

.menu-title .main-title {
    font-size: 2rem;
    /* Reduced from 3rem */
    font-weight: 700;
    display: block;
    color: #fff;
    margin-top: 0;
    /* Remove top margin completely */
    line-height: 1.1;
    /* Ensure tight line height */
}

.menu-line {
    display: none;
    /* Removed as per new design */
}

.menu-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    font-weight: 400;
    word-break: keep-all;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.menu-right {
    width: 50%;
    background-color: #000;
    /* Match background */
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    /* Ensure relative positioning for absolute arrows */
}

.menu-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    cursor: pointer;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.menu-arrow:hover {
    background-color: #fff;
    color: #000;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Slider Styles */
.menu-slider-window {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.menu-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.menu-slide {
    min-width: 100%;
    height: 100%;
}

/* Grid Styling */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: 1fr 1fr; Removed to allow aspect-ratio to dictate height */
    width: 100%;
    /* height: 100%; Removed fixed height to prevent stretching */
    gap: 0;
    /* No gap as per likely design, or small gap? Image shows tight grid */
}

.menu-grid-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Force square ratio on PC */
    overflow: hidden;
}

/* Overlay for hover removed */


.menu-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.menu-grid-item:hover img {
    transform: scale(1.05);
    /* Subtle zoom */
    /* filter brightness removed in favor of overlay */
}

.menu-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 10;
    pointer-events: none;
}

.menu-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.menu-info span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    /* White for subtext too */
    display: block;
    margin-top: 0;
}

/* Responsive Menu Section */
@media (max-width: 900px) {
    .menu-container {
        flex-direction: column;
    }

    .menu-left {
        width: 100%;
        min-height: 400px;
        /* Height for mobile */
        padding: 40px 20px 0;
        /* Remove bottom padding to join with menu-right */
        align-items: center;
        text-align: center;
    }

    .menu-right {
        width: 100%;
        padding: 0;
        /* Remove padding to eliminate gap */
    }

    /* .menu-item removed, using grid-item */

    .menu-title {
        font-size: 1.7rem;
    }

    .menu-title .small-title {
        font-size: 1.7rem;
        /* Match reason-title */
    }

    .menu-desc {
        font-size: 1rem;
    }

    .menu-info h3 {
        font-size: 1.3rem;
        /* Reduced from 1.8rem */
    }

    .menu-info span {
        font-size: 0.9rem;
        /* Reduced */
    }
}

/* On very small screens, maybe stack? */
@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr;
        /* Changed to 2 columns for mobile */
        grid-template-rows: auto;
    }

    .menu-grid-item {
        height: auto;
        aspect-ratio: 1 / 1;
        /* Adjusted height for smaller items */
    }
}

/* --- Reason Section Styles --- */
.reason-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 20px;
    background: url('/assets/reason_bg.png') no-repeat center center/cover;
    /* Placeholder for dark interior bg */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.reason-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay */
    z-index: 1;
}

.reason-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.reason-header {
    margin-bottom: 80px;
}

.reason-subtitle {
    display: block;
    margin-bottom: 20px;
    /* Increased spacing */
}

.reason-subtitle img {
    height: 40px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    display: inline-block;
}

.reason-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reason-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.reason-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.reason-item {
    flex: 1;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reason-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.reason-item:nth-child(1) {
    transition-delay: 0.1s;
}

.reason-item:nth-child(3) {
    transition-delay: 0.3s;
}

.reason-item:nth-child(5) {
    transition-delay: 0.5s;
}

.reason-num-box {
    width: 100px;
    padding: 5px 0;
    border: 1px solid #fff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
}

/* Icon Styling */
.reason-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reason-item-title {
    font-size: 1.95rem;
    font-weight: 800;
    color: #da8c04;
    /* Yellow/Orange accent */
    margin-bottom: 20px;
    position: relative;
    /* padding-bottom removed */
}

.reason-item-title::after {
    /* Horizontal line for mobile only - hidden on desktop */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    max-width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    display: none;
    /* Hidden on PC */
}

.reason-desc {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.6;
    word-break: keep-all;
    font-weight: 400;
}

/* Vertical Divider - Restored */
.reason-divider {
    display: block;
    width: 1px;
    height: 240px;
    /* Long vertical bar */
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 180px;
    /* Push down to align with text area (approx Num+Icon height) */
}


/* Responsive Reason Section */
@media (max-width: 900px) {
    .reason-content {
        flex-direction: column;
        gap: 50px;
    }

    .reason-divider {
        display: none;
    }

    .reason-title {
        font-size: 1.7rem;
    }

    .reason-subtitle {
        margin-bottom: 20px;
    }

    .reason-item {
        width: 100%;
        padding: 0;
    }

    .reason-item-title::after {
        display: none;
        /* Hide on mobile again, moving to desc */
    }

    .reason-desc {
        position: relative;
        padding-bottom: 30px;
    }

    .reason-desc::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 270px;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.3);
        display: block;
    }

    .reason-item-title {
        font-size: 1.5rem;
        /* Reduced from 1.95rem */
    }

    .reason-desc {
        font-size: 1rem;
        /* Reduced from 1.25rem */
        padding-bottom: 30px;
    }
}

/* --- Trust Section --- */
.trust-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: transparent;
    /* Changed to transparent to use wrapper gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 5vw;
    color: #fff;
    overflow: hidden;
}

.trust-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    z-index: 2;
}

.trust-image {
    width: 500px;
    height: 600px;
    flex-shrink: 0;
    overflow: hidden;
    /* Animation Init */
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

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

.trust-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
    /* Animation Init */
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

/* Animation Active State */
.trust-section.active .trust-image,
.trust-section.active .trust-content {
    opacity: 1;
    transform: translateY(0);
}

.trust-section.active .trust-content {
    transition-delay: 0.3s;
    /* Staggered effect */
}

.trust-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.trust-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.trust-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 50px;
}

.trust-content .btn-detail {
    margin-left: 0;
    /* Reset global indent for Trust section */
}

/* Kept for reference if used elsewhere, but HTML uses btn-detail currently */
.btn-trust {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-trust:hover {
    background-color: #fff;
    color: #4a255f;
}

.btn-trust .line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: currentColor;
    margin-left: 15px;
}

.trust-logo-outline {
    position: absolute;
    top: 100px;
    right: 5vw;
    width: 150px;
    opacity: 0.8;
}

/* --- Inquiry Section --- */
.inquiry-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: transparent;
    /* Changed to transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;
}

.inquiry-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.inquiry-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.inquiry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.inquiry-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 60px;
}

.inquiry-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    width: 80px;
    color: #fff;
    font-size: 1.1rem;
    text-align: justify;
    /* Justify text */
    text-align-last: justify;
    /* justify the last line (for single lines) */
    font-weight: 500;
    white-space: nowrap;
    /* Prevent wrapping */
    margin-right: 15px;
    /* Ensure spacing from input */
    /* letter-spacing removed/reduced to allow justify to work naturally */
}

.form-group input {
    flex: 1;
    height: 50px;
    background-color: #fff;
    border: none;
    padding: 0 15px;
    font-size: 1rem;
    color: #333;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.terms input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.terms label {
    cursor: pointer;
    position: relative;
    top: -3px;
    /* visual alignment */
}

.view-terms {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    /* No underline */
    margin-left: 0;
    /* Gap handled by flex */
    color: #aaa;
    transition: color 0.3s;
    position: relative;
    top: 1px;
    /* Visual alignment */
}

.view-terms:hover {
    color: #da8c04;
    /* Point Color on Hover */
}

.btn-submit {
    width: 100%;
    height: 60px;
    background: linear-gradient(to right, #7b3f94, #5D3A78);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Responsive Styles for New Sections */
@media (max-width: 900px) {
    .trust-container {
        flex-direction: column;
        gap: 40px;
    }

    .trust-image {
        width: 100%;
        height: 400px;
    }

    .trust-content {
        padding: 0 20px;
        text-align: center;
    }

    .trust-subtitle {
        font-size: 1.2rem;
    }

    .trust-title {
        font-size: 1.7rem;
    }

    .trust-divider {
        margin: 20px auto;
        /* Center divider */
    }

    .trust-logo-outline {
        display: none;
        /* Hide on mobile or adjust */
    }

    .inquiry-bg-text {
        font-size: 18vw;
        top: 20%;
        /* Move up behind the title */
    }

    .inquiry-title {
        font-size: 1.7rem;
    }

    .inquiry-subtitle {
        font-size: 1rem;
        word-break: keep-all;
        padding: 0 40px;
        line-height: 1.6;
    }

    /* Removed forced column layout for form-group to restore row layout and letter-spacing */

    .trust-desc {
        font-size: 15px !important;
        line-height: 1.6 !important;
        word-break: keep-all;
    }

    .trust-desc br {
        display: none;
    }

    .trust-desc br.mo-br {
        display: block !important;
    }

    .trust-section .btn-detail {
        float: none !important;
        margin: 30px auto 0 !important;
        display: flex !important;
        width: fit-content !important;
    }

    .trust-section {
        padding-bottom: 50px !important;
        /* Halved from 100px */
    }
}

/* Hide Trust Section Outline Logo on Small Monitors (Laptops/Tablets) */
@media (max-width: 1400px) {
    .trust-logo-outline {
        display: none;
    }
}

/* Mobile form refinements */
@media (max-width: 900px) {
    .inquiry-form .form-group {
        flex-direction: row !important;
        align-items: center !important;
    }

    .inquiry-form .form-group label {
        margin-bottom: 0 !important;
        margin-right: 15px !important;
    }

    .inquiry-form input {
        height: 50px !important;
        font-size: 16px !important;
    }
}

/* Mobile terms alignment */
@media (max-width: 900px) {
    .terms {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }

    .terms input[type='checkbox'] {
        margin-top: 0 !important;
    }

    .terms label {
        margin-bottom: 0 !important;
    }
}

/* PC-specific: Move bg text closer to title */
@media (min-width: 901px) {
	
	.store-table td {
    font-size: 1.2rem !important;
}
    .inquiry-bg-text {
        top: 18% !important;
    }
}

/* Update PC bg text pos to 14% */
@media (min-width: 901px) {
    .inquiry-bg-text {
        top: 14% !important;
    }
}

/* Update gradient start color */
.combined-section-wrapper {
    background: linear-gradient(to bottom, #51215c 0%, #0d0411 100%) !important;
}

/* --- Footer Section --- */
.site-footer {
    position: relative;
    width: 100%;
    background-color: #000;
    padding: 100px 5vw;
    color: #888;
    overflow: hidden;
    text-align: left;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.footer-logo {
    margin-bottom: 30px;
    width: 180px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #777;
}

.footer-info p {
    margin-bottom: 5px;
}

.copyright {
    font-size: 0.85rem;
    color: #555;
}

/* Footer Responsive */
@media (max-width: 900px) {
    .site-footer {
        padding: 60px 20px;
    }

    .footer-links {
        gap: 15px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-info {
        font-size: 0.8rem;
    }
}

/* Update gradient to pure black at bottom */
.combined-section-wrapper {
    background: linear-gradient(to bottom, #51215c 0%, #000 100%) !important;
}

/* Fix footer background for natural look */
.footer-bg {
    opacity: 1 !important;
}

.footer-bg img {
    filter: none !important;
}

/* Remove inquiry section bottom padding */
.inquiry-section {
    padding-bottom: 0px !important;
}

/* Fix for spacing: Remove min-height constraint */
.inquiry-section {
    min-height: auto !important;
    padding-bottom: 50px !important;
}

/* Kept small padding for aesthetic breathing room, or set to 0 if strictly requested */

/* Restore inquiry top padding */
.inquiry-section {
    padding-top: 100px !important;
}

/* Increase inquiry top padding to 120px */
.inquiry-section {
    padding-top: 120px !important;
}

/* Increase inquiry top padding to 140px */
.inquiry-section {
    padding-top: 140px !important;
}

/* Footer Refinements */
.site-footer {
    padding-top: 250px !important;
}

.footer-bg img {
    object-position: top !important;
}

@media (max-width: 900px) {
    .site-footer {
        padding-bottom: 100px !important;
    }
}

/* Mobile: Increase Footer top padding */
@media (max-width: 900px) {
    .site-footer {
        padding-top: 300px !important;
    }
}

/* Update Footer Padding: PC 300px, Mobile 200px */
.site-footer {
    padding-top: 300px !important;
}

@media (max-width: 900px) {
    .site-footer {
        padding-top: 300px !important;
    }
}

/* Increase PC Footer top padding to 400px */
.site-footer {
    padding-top: 400px !important;
}

/* Increase PC Footer top padding to 450px */
.site-footer {
    padding-top: 450px !important;
}

/* Increase Inquiry top padding for PC to 180px */
@media (min-width: 901px) {
    .inquiry-section {
        padding-top: 180px !important;
    }
}

/* Increase inquiry container top margin on PC */
@media (min-width: 901px) {
    .inquiry-container {
        margin-top: 50px !important;
    }
}

/* Increase Footer Logo size on PC */
@media (min-width: 901px) {
    .footer-logo {
        width: 240px !important;
    }
}

/* Adjust gradient: Solid black starting at 80% */
.combined-section-wrapper {
    background: linear-gradient(to bottom, #51215c 0%, #000 80%) !important;
}

/* Remove bottom padding from Trust section */
.trust-section {
    padding-bottom: 0px !important;
}

/* Mobile: Set Trust Section bottom padding to 80px */
@media (max-width: 900px) {
    .trust-section {
        padding-bottom: 80px !important;
    }
}

/* Reduce Mobile Footer top padding to 100px */
@media (max-width: 900px) {
    .site-footer {
        padding-top: 100px !important;
    }
}

/* Mobile: Add top margin to Footer Logo */
@media (max-width: 900px) {
    .footer-logo {
        margin-top: 100px !important;
    }
}

/* Mobile: Hide Admin Mode link */
@media (max-width: 900px) {
    .footer-links li:last-child {
        display: none !important;
    }
}

/* Move inquiry container up 50px (reset previous margin) */
@media (min-width: 901px) {
    .inquiry-container {
        margin-top: 0px !important;
    }
}

/* Fix Brand Story Background on Mobile */
@media (max-width: 900px) {
    .brand-bg-image {
        display: block !important;
        opacity: 1 !important;
        height: 100% !important;
        background-attachment: scroll !important;
    }

    .brand-story {
        background: #111
    }
}

/* Mobile: Set Reason Section background to right */
@media (max-width: 900px) {
    .reason-section {
        background-position: right center !important;
    }
}

/* Mobile: Add 50% black overlay to Reason Section */
@media (max-width: 900px) {
    .reason-section {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/assets/reason_bg.png') !important;
        background-repeat: no-repeat !important;
        background-position: right center !important;
        /* Reverted to right */
        background-size: cover !important;
        /* Reverted to cover (big) */
        background-color: #111 !important;
    }
}

/* Mobile: Increase Hamburger Menu Size */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        transform: scale(1.2) !important;
    }

    /* Reduce Mobile Menu Logo Size */
    .mobile-logo img {
        width: 120px !important;
        /* Adjusted to be smaller */
        height: auto !important;
    }
}

/* --- Brand Introduction Page Styles --- */
.brand-page-main {
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.brand-intro-screen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 20px 100px;
    box-sizing: border-box;
}

.brand-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.4;
}

.brand-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000 0%, transparent 20%, transparent 80%, #000 100%), rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.brand-intro-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 800px;
    width: 100%;
}

.brand-text-sequence {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fade-line {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ccc;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.5s ease-out;
}

.fade-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-line.delay-1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.fade-line.delay-7 {
    margin-top: 20px;
}

.spacer {
    height: 50px;
}

@media (max-width: 768px) {
    .brand-intro-screen {
        min-height: 80vh;
        padding-top: 120px;
    }

    .fade-line {
        font-size: 1.1rem;
    }

    .fade-line.delay-1 {
        font-size: 1.6rem;
    }

    .spacer {
        height: 30px;
    }
}

/* --- Notice Page Styles --- */
/* Sub Page Hero */
.sub-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    /* Space for fixed header */
}

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

.sub-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.sub-hero-content h2 {
    font-family: 'NanumSquare', sans-serif;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the bar */
    margin-top: -80px;
}

.title-bar {
    display: block;
    width: 60px;
    height: 4px;
    background-color: #da8c04;
    /* Point Color */
    margin: 20px 0;
    /* Adjusted spacing */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.35s;
    /* Adjusted delay */
}

.title-line {
    display: block;
    font-size: 5rem;
    /* Increased base size for "공지사항" */
    font-weight: 800;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.title-line.delay-1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    animation-delay: 0.2s;
    letter-spacing: 2px;
    /* Elegant spacing for the top line */
    color: #e0e0e0;
}

.title-line.delay-2 {
    animation-delay: 0.5s;
    /* Main title remains big and bold */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sub Menu Bar */
/* Sub Menu Bar - Redesign (Purple Background) */
/* Sub Menu Bar */
.sub-menu-bar {
    background-color: #000;
    /* Pure Black */
    border-bottom: 1px solid #333;
    width: 100%;
    height: 60px;
    /* 고정 높이 */
}

.sub-menu-bar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    /* 부모 높이 상속 */
}

.sub-menu-bar li {
    width: 220px;
    /* 너비 대폭 확대 (180px -> 220px) */
    text-align: center;
    height: 100%;
}

.sub-menu-bar a {
    display: flex;
    /* Flex로 변경 */
    justify-content: center;
    align-items: center;
    /* 수직 정렬 */
    width: 100%;
    height: 100%;
    padding: 0;
    /* 패딩 제거 */
    font-size: 1.1rem;
    /* 폰트 크기 확대 */
    color: #999;
    font-weight: 700;
    /* 굵게 변경 */
    transition: all 0.3s;
    font-family: 'NanumSquare', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    /* 줄바꿈 방지 */
}

/* Active State - Point Color */
.sub-menu-bar li.active a {
    color: #fff;
    background-color: #da8c04;
    /* Point Color */
    font-weight: 800;
    /* 더 굵게 */
    border: none;
    box-shadow: none;
}

/* Hover State - Dark Gray */
.sub-menu-bar a:hover {
    color: #fff;
    background-color: #333;
    /* Dark Gray for subtle hover */
    font-weight: 800;
    /* 더 굵게 */
}

/* Notice Section */
/* Notice Section */
.notice-section {
    background: linear-gradient(to bottom, #150a1e, #000000);
    /* Extra Dark Purple to Black */
    color: #fff;
    padding: 100px 0 80px;
}

.notice-container2 {
    max-width: 1400px;
    /* Increased from 1000px */
    margin: 0 auto;
    padding: 0 20px;
}

.notice-container {
    max-width: 1400px;
    /* Increased from 1000px */
    margin: 0 auto;
    padding: 0 20px;
}

/* Search Bar */
.notice-search-wrap {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.notice-search-form {
    display: flex;
    gap: 0;
    /* Seamless look? Or gap? Image shows seamless usually or small gap. Let's go seamless-ish or small gap. */
    width: 100%;
    max-width: 700px;
}

.search-select {
    padding: 15px 20px;
    background-color: #fff;
    border: none;
    color: #333;
    width: 120px;
    font-size: 1rem;
    cursor: pointer;
    border-right: 1px solid #ccc;
    font-family: 'NanumSquare', sans-serif;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
    outline: none;
    font-family: 'NanumSquare', sans-serif;
}

.search-btn {
    padding: 0 40px;
    background-color: #777;
    /* Gray */
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
    font-family: 'NanumSquare', sans-serif;
}

.search-btn:hover {
    background-color: #999;
    color: #fff;
}

/* Notice List */
.notice-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.notice-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    transition: background-color 0.3s;
}

.notice-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.notice-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.con {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.q-mark {
    color: #fff;
    /* White in image? Or maybe accent. Image seems white/bold. Let's keep white. */
    font-weight: 800;
}

/* Re-check image: "Q. 창업 절차는 어떻게 되나?" is White, Bold. */

.notice-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ccc;
    /* Slightly dimmed for Answer */
    font-size: 1.1rem;
    line-height: 1.6;
}

.a-mark {
    color: #ccc;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        height: 25px;
    }

    .logo a {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 100%;
        width: auto;
    }

    .kakao-logo {
        width: 24px !important;
        height: 24px !important;
        display: block;
        margin: 0 auto -3px auto;
    }

    .sub-hero {
        height: 60vh;
    }

    .sub-hero-content h2 {
        font-size: 1.8rem;
    }

    .title-line {
        font-size: 2.5rem;
    }

    .title-line.delay-1 {
        font-size: 1rem;
    }

    .notice-section {
        padding: 50px 0;
    }

    .notice-search-form {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }

    .search-select {
        width: 30%;
        border-right: 1px solid #ccc;
        /* Keep separation logic */
    }

    .search-input {
        width: 70%;
        border-right: none;
    }

    .search-btn {
        width: 100%;
        margin-top: 10px;
        /* Space above button */
        padding: 15px 0;
    }

    /* Mobile Submenu: 2 Lines (3 items + 2 items) */
    .sub-menu-bar {
        height: auto;
        /* Allow height to expand */
    }

    .sub-menu-bar ul {
        flex-wrap: wrap;
    }

    .sub-menu-bar li {
        width: 33.33%;
        /* 3 items per row */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        height: 50px;
        /* 고정 높이 */
    }

    .sub-menu-bar a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0;
        /* 패딩 제거하고 flex로 정렬 */
        font-size: 0.9rem;
        /* 글자 크기 약간 조정 */
        line-height: 1.2;
    }

    .notice-search-wrap {
        margin-bottom: 40px;
    }

    .notice-item {
        padding: 30px 15px;
    }

    .notice-question {
        font-size: 1.1rem;
        gap: 10px;
    }

    .notice-answer {
        font-size: 1rem;
        gap: 10px;
    }

    /* Hide Trust Section Outline Logo on Mobile */
    .trust-logo-outline {
        display: none;
    }
}

/* Privacy Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #444;
    width: 80%;
    max-width: 600px;
    color: #fff;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #da8c04;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-modal:hover,
/* Store Section Styles */
.store-search-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.store-select {
    width: 200px;
    height: 50px;
    background-color: #000;
    border: 1px solid #777;
    border-radius: 50px;
    color: #fff;
    padding: 0 20px;
    font-size: 1rem;
    outline: none;
    font-family: 'NanumSquare', sans-serif;
    appearance: none;
    /* Remove default arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.store-search-box {
    position: relative;
    width: 400px;
}

.store-input {
    width: 100%;
    height: 50px;
    background-color: #000;
    border: 1px solid #777;
    border-radius: 50px;
    color: #fff;
    padding: 0 60px 0 20px;
    /* Right padding for button */
    font-size: 1rem;
    outline: none;
    font-family: 'NanumSquare', sans-serif;
}

.store-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background-color: #da8c04;
    /* Point Color */
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.store-search-btn:hover {
    background-color: #c67f03;
    /* Darker Point Color */
}

/* Store Table */
.store-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-family: 'NanumSquare', sans-serif;
    margin-bottom: 40px;
}

.store-table th {
    padding: 20px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.store-table td {
    padding: 20px 10px;
    border-bottom: 1px dashed #333;
    /* Dashed Border */
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    color: #ddd;
}

.store-table .store-address {
    text-align: left;
    padding-left: 30px;
}

.store-table .store-phone {
    text-align: left;
    /* Image shows aligned left-ish or center, but phone icon is explicit */
    color: #ddd;
}

.phone-icon {
    color: #da8c04;
    /* Point Color */
    margin-right: 5px;
    transform: rotate(90deg);
    /* Phone icon rotation if needed, or pick alt icon */
}

/* Mobile Responsive for Store */
@media (max-width: 768px) {
    .store-search-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .store-select {
        width: calc(50% - 5px);
    }

    .store-search-box {
        width: 100%;
    }

    .store-table th,
    .store-table td {
        font-size: 0.9rem;
        padding: 15px 5px;
    }

    .store-table .store-address {
        padding-left: 10px;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    /* Center alignment */
    align-items: center;
    gap: 5px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-btn,
.page-num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 30px;
    padding: 0 5px;
    height: 30px;
    border: 1px solid #333;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
}

.page-btn:hover,
.page-num:hover,
.page-num.active {
    background-color: #da8c04 !important;
    border-color: #da8c04 !important;
    color: #fff !important;
    font-weight: bold;
}

/* Store Detail Modal */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    /* Darker overlay */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1a1a1a;
    /* Black background */
    margin: 0;
    padding: 30px;
    border: none;
    width: 100%;
    max-width: none;
    height: 100%;
    /* Full height on mobile */
    overflow-y: auto;
    border-radius: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation-name: animatetop;
    animation-duration: 0.4s;
    font-family: 'Noto Sans KR', sans-serif;
    display: flex;
    flex-direction: column;
}

.modal-header {
    flex-shrink: 0;
    padding: 10px 0 20px;
    border-bottom: 1px solid #333;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px 0 10px;
    flex: 1;
    /* Take remaining space */
    display: flex;
    flex-direction: column;
}

.modal-info {
    margin-bottom: 20px;
    text-align: left;
    flex-shrink: 0;
}

/* PC Modal Size Override */
@media (min-width: 768px) {
    .modal-overlay .modal-content {
        max-width: 1000px;
        width: 90%;
        height: auto;
        margin: auto;
        border: 1px solid #444;
        display: block;
    }

    .modal-overlay .modal-body {
        display: flex;
        flex-direction: row;
        gap: 50px;
        align-items: flex-start;
        /* Align top to prevent stretching */
        text-align: left;
    }

    .modal-left-col {
        flex: 1;
        /* Left Column */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Items at top */
    }

    .modal-overlay .modal-info {
        text-align: left;
        margin-bottom: 20px;
    }

    .modal-right-col {
        flex: 1.5;
        /* Right Column - Map gets more space */
        width: 100%;
    }

    .map-container {
        height: 400px !important;
        /* Adjusted Map Height */
        flex: none;
        margin-top: 0;
    }

    .modal-overlay .modal-info p {
        font-size: 1.2rem;
        text-align: left;
    }

    .find-route-container {
        text-align: left !important;
        margin-top: 30px;
    }
}

/* Info Row Styles (New Layout) */
.info-row {
    display: flex;
    align-items: flex-start;
    color: #ccc;
    font-size: 1.1rem;
    text-align: left;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.info-row.single-line {
    align-items: center;
    /* Center align for one line */
}

.info-row i {
    width: 25px;
    text-align: center;
    color: #da8c04;
    margin-right: 5px;
    /* Reduced margin */
    margin-top: 0;
    /* consistent */
    flex-shrink: 0;
}

.info-row span {
    flex: initial;
    /* Auto width */
    word-break: break-all;
    /* Ensure wrapping */
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.modal-close {
    color: #888;
    position: absolute;
    /* Position absolute for cleaner placement */
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.modal-close:hover,
.modal-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 10px 0 0;
    /* Removed padding-bottom and border */
    border-bottom: none;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    /* White text */
    font-family: 'Noto Sans KR', sans-serif;
    /* Same as body font */
    font-weight: 700;
    font-size: 1.5rem;
    padding-bottom: 20px;
    /* Moved spacing here */
    border-bottom: 1px solid #333;
    /* Moved border here */
    display: block;
    /* Ensure block allows width */
}

.modal-body {
    padding: 30px 0 10px;
}

/* Default Mobile Styles for body content (overridden by media query above for PC) */
.modal-info {
    margin-bottom: 20px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.5;
}

.modal-info p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #ccc;
    /* Light gray text */
}

.modal-info i {
    width: 20px;
    text-align: center;
    color: #da8c04;
    margin-right: 8px;
}

.modal-info .divider {
    margin: 0 10px;
    color: #555;
    font-weight: 300;
}

.map-container {
    margin-top: 20px;
    border-radius: 0;
    overflow: hidden;
    border: none;
    /* Mobile: Default height */
    height: 250px;
    flex: 1;
}

/* Ensure iframe takes full height */
/* Ensure iframe takes full height */
.map-container iframe {
    height: 100% !important;
}

.find-route-btn {
    background-color: #5D3A78;
    /* Brand Purple */
    color: #fff;
    /* White text */
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin-top: 15px;
    margin-bottom: 20px;
    /* Added bottom margin for full screen mode */
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s;
    flex-shrink: 0;
    /* Don't shrink */
}

/* ... */

.find-route-btn:hover {
    background-color: #4a2e60;
    /* Darker Purple */
}

/* Privacy Modal Specific Styles - Separated from Store Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    /* Higher than store modal just in case */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Center the modal content and make it small */
.modal .modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    /* Centered vertically/horizontally */
    padding: 30px;
    border: 1px solid #444;
    width: 90%;
    max-width: 500px;
    /* Max width 500px as originally requested */
    height: auto;
    border-radius: 10px;
    /* Slight radius */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: block;
    /* Ensure block display */
}

/* Close button for Privacy Modal */
.modal .close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.modal .close-modal:hover,
.modal .close-modal:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* Ensure body text inside Privacy Modal is standard */
.modal .modal-body {
    display: block;
    /* Reset to normal block */
    text-align: left;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
    /* Prevent scrollbar overlap text */
}

/* Scrollbar styling for modal body */
.modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal .modal-body::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

.modal .modal-body::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

.modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Store Modal Scroll Support (PC/Mobile) */
.modal-overlay .modal-body {
    max-height: 80vh;
    /* Limit height to 80% of viewport */
    overflow-y: auto;
    /* Enable scroll if content exceeds height */
    padding-right: 5px;
    /* Spacing for scrollbar */
}

/* Store Modal Scrollbar Styling */
.modal-overlay .modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-overlay .modal-body::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.modal-overlay .modal-body::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.modal-overlay .modal-body::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Mobile Layout Adjustments for Store Modal */
@media (max-width: 900px) {

    /* Flatten the structure to allow reordering */
    .modal-overlay .modal-body {
        display: flex;
        flex-direction: column;
    }

    .modal-left-col,
    .modal-right-col {
        display: contents;
        /* Children act as direct flex items of modal-body */
    }

    /* Order 1: Store Info */
    .modal-overlay .modal-info {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Order 2: Map */
    .map-container {
        order: 2;
        width: 100%;
        height: 250px !important;
        /* Mobile Map Height 250px */
        margin-top: 0;
        margin-bottom: 20px;
        flex: none;
        /* Prevent stretching */
    }

    /* Order 3: Find Route Button */
    .find-route-container {
        order: 3;
        width: 100%;
        text-align: center;
        /* Center the button on mobile */
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

    .find-route-btn {
        width: 90%;
        /* Wide button on mobile */
        max-width: 300px;
        margin: 0;
    }

    /* Transform Store Table to Card Layout on Mobile */
    .store-table thead {
        display: none;
        /* Hide headers */
    }

    .store-table tr {
        display: block;
        border-bottom: 1px solid #333;
        padding: 15px 0;
    }

    .store-table td {
        display: block;
        text-align: left;
        padding: 3px 10px;
        border: none;
        width: 100%;
    }

    /* Region and Name on one line-ish or stacked differently? 
       Let's put Region and Name on top line */
    .store-table td:nth-child(1) {
        /* Region */
        display: inline-block;
        width: auto;
        font-weight: bold;
        color: #da8c04;
        margin-right: 5px;
        padding-bottom: 5px;
    }

    .store-table td:nth-child(2) {
        /* Name */
        display: inline-block;
        width: auto;
        font-weight: bold;
        color: #fff;
        padding-bottom: 5px;
    }

    .store-table td:nth-child(3) {
        /* Address */
        display: block;
        color: #ccc;
        font-size: 0.95rem;
    }

    .store-table td:nth-child(4) {
        /* Phone */
        display: block;
        color: #888;
        font-size: 0.9rem;
        margin-top: 5px;
        /* Separation from address */
    }
}

.notice-container2 h2 {
    text-align: center;
    font-size: 3em;
}

.notice-container h2 {
    text-align: center;
    font-size: 3em;
    padding-bottom: 60px
}

.notice-container h3 {
    text-align: center;
    padding-bottom: 40px
}

/* Inquiry Component Styles - Specific to inquiry.html to avoid conflicts */
.inq-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;
    margin-top: 80px;
    /* Add margin for fixed header */
}

/* Base background for inquiry page */
body.inquiry-page {
    background: linear-gradient(to bottom, #51215c 0%, #0d0411 100%);
}

.inq-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.inq-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.inq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.inq-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 60px;
}

.inq-form {
    width: 100%;
    max-width: 900px;
    /* Increased max-width for "100%" feel on larger screens */
    margin: 0 auto;
}

.inq-form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
    /* Ensure full width */
}

/* Align content top for textarea */
.inq-form-group.top-align {
    align-items: flex-start;
}

.inq-form-group label {
    width: 80px;
    color: #fff;
    font-size: 1.1rem;
    text-align: justify;
    text-align-last: justify;
    font-weight: 500;
    white-space: nowrap;
    margin-right: 15px;
    margin-top: 15px;
    /* Adjust label alignment for textarea vertical centering/top */
}

/* Adjust label margin for text inputs back to center alignment feel */
.inq-form-group:not(.top-align) label {
    margin-top: 0;
}

.inq-form-group input,
.inq-form-group textarea {
    flex: 1;
    width: 100%;
    /* Ensure full width relative to flex container */
    background-color: #fff;
    border: none;
    padding: 15px;
    font-size: 1rem;
    color: #333;
    font-family: 'Noto Sans KR', sans-serif;
    /* Ensure font consistency in inputs */
}

.inq-form-group input {
    height: 50px;
}

.inq-form-group textarea {
    height: 200px;
    /* Set height for content area */
    resize: vertical;
}

.inq-form-footer {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.inq-terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.inq-terms input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.inq-terms label {
    cursor: pointer;
    position: relative;
    top: -3px;
}

.inq-view-terms {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    margin-left: 0;
    color: #aaa;
    transition: color 0.3s;
    position: relative;
    top: 1px;
}

.inq-view-terms:hover {
    color: #da8c04;
}

.inq-btn-submit {
    width: 100%;
    /* Default width (Mobile) */
    height: 60px;
    background: linear-gradient(to right, #7b3f94, #5D3A78);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    display: block;
    margin: 0 auto;
}

.inq-btn-submit:hover {
    background-color: #4a2e60;
    transform: scale(1.05);
}

/* Modal Styles - Renamed to avoid conflicts */
.inq-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.inq-modal .inq-modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #444;
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: block;
}

.inq-modal .inq-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.inq-modal .inq-close-modal:hover {
    color: #fff;
}

.inq-modal .inq-modal-body {
    display: block;
    text-align: left;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.inq-modal .inq-modal-body::-webkit-scrollbar {
    width: 6px;
}

.inq-modal .inq-modal-body::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

.inq-modal .inq-modal-body::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .inq-bg-text {
        font-size: 18vw;
        top: 20%;
    }

    .inq-title {
        font-size: 1.7rem;
    }

    .inq-subtitle {
        font-size: 1rem;
        word-break: keep-all;
        padding: 0 40px;
        line-height: 1.6;
    }

    /* Mobile form adjustments */
    .inq-form .inq-form-group {
        flex-direction: row !important;
        align-items: center !important;
    }

    .inq-form .inq-form-group.top-align {
        align-items: flex-start !important;
    }

    .inq-form .inq-form-group label {
        margin-bottom: 0 !important;
        margin-right: 15px !important;
    }

    .inq-form .inq-form-group.top-align label {
        margin-top: 15px !important;
    }

    .inq-form input,
    .inq-form textarea {
        font-size: 16px !important;
    }

    .inq-form input {
        height: 50px !important;
    }

    .inq-terms {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }

    .inq-terms input[type='checkbox'] {
        margin-top: 0 !important;
    }

    .inq-terms label {
        margin-bottom: 0 !important;
    }
}

/* PC-specific background text */
@media (min-width: 901px) {
    .inq-bg-text {
        top: 14% !important;
    }

    .inq-btn-submit {
        width: 30% !important;
        /* PC Button Width */
    }
}

/* --- Hero Section --- */
.menu2-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.menu2-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.menu2-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.menu2-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.menu2-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* --- Category Tabs (Reuse Style) --- */
.menu2-category-nav {
    display: flex;
    justify-content: center;
    margin: 60px 0;
    padding: 0 20px;
}

.menu2-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu2-tab {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #888;
    border: 1px solid #444;
    border-radius: 0;
    /* Square/Sharp look for variation? Or rounded? User didn't specify, sticking to cleaner look */
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu2-tab.active,
.menu2-tab:hover {
    color: #fff;
    border-color: #da8c04;
    background-color: #da8c04;
}

/* --- Menu List Section --- */
.menu2-list-section {
    padding: 0 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu2-list-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Gap handled by padding/border */
}

.menu2-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    /* or center */
    padding: 60px 0;
    border-bottom: 1px solid #222;
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.menu2-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu2-item:last-child {
    border-bottom: none;
}

/* Odd/Even logic for variance? User said "Left image, right description". 
   If they want zig-zag, I'd use :nth-child(even). 
   Let's stick to strict Left-Right as requested first. */

.menu2-img-box {
    width: 45%;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    /* Aspect Ratio control */
    aspect-ratio: 4 / 3;
    position: relative;
    /* Ensure container is relative for absolute positioning of text */
}

/* Watermark Overlay */
.menu2-img-box::after {
    content: 'gnyj1971';
    position: absolute;
    top: auto;
    bottom: 20px;
    left: 20px;
    transform: none;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    /* White with 50% opacity */
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through */
    text-transform: uppercase;
    font-family: 'Nanum Gothic', sans-serif;
    letter-spacing: -2px;
}

.menu2-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu2-item:hover .menu2-img-box img {
    transform: scale(1.05);
}

.menu2-info-box {
    flex-grow: 1;
    padding-top: 10px;
    /* Slight offset alignment */
}

.menu2-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.menu2-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.menu2-badge {
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    background-color: #333;
    color: #fff;
}

.menu2-badge.best {
    background-color: #da8c04;
}

.menu2-badge.new {
    background-color: #999;
    color: #000
}

.menu2-desc {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 30px;
    word-break: keep-all;
    /* Korean text wrapping */
}

.menu2-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #888;
    font-size: 0.95rem;
}

.menu2-detail-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.menu2-detail-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #da8c04;
}

/* --- Responsive Media Queries --- */

@media (max-width: 900px) {
    .menu2-item {
        flex-direction: column;
        gap: 30px;
    }

    .menu2-img-box {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .menu2-name {
        font-size: 1.4rem;
    }

    .menu2-category-nav {
        margin: 30px 0;
        padding: 0 15px;
        justify-content: flex-start;
        /* Start alignment for scroll */
        overflow-x: auto;
        /* Enable scroll */
    }

    .menu2-tabs {
        flex-wrap: nowrap;
        /* Single line */
        gap: 10px;
        width: 100%;
        /* Ensure full width availability */
        min-width: min-content;
        /* Ensure items don't shrink too much */
    }

    .menu2-tab {
        flex-shrink: 0;
        /* Prevent shrinking */
        white-space: nowrap;
        padding: 10px 20px;
        font-size: 1rem;
    }

    /* Hide scrollbar for cleaner look */
    .menu2-category-nav::-webkit-scrollbar {
        display: none;
    }

    .menu2-category-nav {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
}

/* Franchise Page Styles */

/* Reuse Hero Section styles generic if possible, but defining specific class */
.fc-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('assets/bg.jpg');
    /* Use generic BG */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.fc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.fc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.fc-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.fc-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Process Section */
.fc-process-section {
    padding: 0px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.fc-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

.fc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 50px;
}

.fc-step-card {
    background-color: #000;
    /* Black Background */
    padding: 40px 20px;
    border-radius: 0;
    /* Square */
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(30px);
}

.fc-step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover & Active State */
.fc-step-card:hover,
.fc-step-card.active-step {
    transform: translateY(-10px);
    /* background-color stays #000 */
    border-color: #da8c04;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Arrow Styling - Chevron Right */
.fc-step-card::after {
    content: '\f054';
    /* Font Awesome Chevron Right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #444;
}

/* Hide arrow on the 3rd item and last item */
.fc-step-card:nth-child(3n)::after,
.fc-step-card:last-child::after {
    display: none;
}

/* Icon Styles & Float Animation */
@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fc-step-icon {
    margin-bottom: 30px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fc-step-icon img {
    max-width: 100px;
    /* Increased Size */
    height: auto;
    display: block;
}

/* Accent Dot - Removed (Included in Image) */

.fc-step-card:hover .fc-step-icon,
.fc-step-card.active-step .fc-step-icon {
    animation: iconFloat 1.5s ease-in-out 1;
    /* Run Once */
    transform: none;
}

.fc-step-num {
    font-family: 'NanumSquare', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    /* Changed to White */
    margin-bottom: 20px;
    position: static;
    display: block;
    transition: color 0.3s;
}

.fc-step-card:hover .fc-step-num,
.fc-step-card.active-step .fc-step-num {
    color: #fff;
    /* Keep White */
}

.fc-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #da8c04;
    /* Changed to Point Color */
    margin-bottom: 15px;
    word-break: keep-all;
}

.fc-step-desc {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
    word-break: keep-all;
}

/* CTA Section */
.fc-cta-section {
    text-align: center;
    padding: 80px 0;
}

/* Updated Button Style: Square & Purple */
.fc-cta-btn {
    display: inline-block;
    padding: 20px 60px;
    background-color: #5d3a78;
    /* Specific Purple */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 0;
    /* Square */
    transition: background-color 0.3s, transform 0.3s;
}

.fc-cta-btn:hover {
    background-color: #4a2e60;
    /* Darker version */
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .fc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-step-card:nth-child(3n)::after {
        display: block;
    }

    .fc-step-card:nth-child(2n)::after {
        display: none;
    }

    .fc-step-card:last-child::after {
        display: none;
    }
}

@media (min-width: 601px) {
    .fc-cta-section h3 {
        font-size: 2rem !important;
        /* Smaller text */
        margin-bottom: 20px !important;
    }
}

@media (max-width: 600px) {
    .fc-process-section {
        padding-bottom: 50px;
        /* Reduced from 100px */
    }

    .fc-hero-section {
        height: 250px;
        /* Reduced height for mobile */
        background-size: cover;
        /* Ensure it covers, but with reduced height it shows more horizontal content */
        /* If user wants NO cropping at all (contain), use:
           background-size: 100% auto;
           height: auto;
           aspect-ratio: 16/9; (or whatever the image ratio is)
           But usually "entire image" in this context implies seeing the width fully without excessive vertical cropping.
           250px is a safer start. 
        */
        background-position: center;
    }

    .fc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fc-hero-title {
        font-size: 2.2rem;
    }

    .fc-step-card {
        padding: 20px 20px;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    /* Down Arrow */
    .fc-step-card::after {
        content: '\f078';
        right: 50%;
        top: auto;
        bottom: -35px;
        transform: translateX(50%);
    }

    .fc-step-card:nth-child(3n)::after,
    .fc-step-card:nth-child(2n)::after {
        display: block;
    }

    .fc-step-card:last-child::after {
        display: none;
    }

    .fc-step-num {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .fc-step-icon {
        font-size: 2.5rem;
    }

    /* Mobile CTA Adjustments */
    .fc-cta-section {
        padding: 40px 0;
        /* Reduced Padding */
    }

    .fc-cta-section h3 {
        font-size: 1.5rem !important;
        /* Smaller text */
        margin-bottom: 20px !important;
    }
}

@media (max-width: 768px) {
    .slider-dots {
        display: none;
        /* Hidden on mobile */
    }

    .hero-section {
        height: 450px !important;
        min-height: 450px !important;
    }

    .logo-box img {
        width: 300px;
        padding-top: 45px;
        /* Smaller fixed width for mobile to fit 450px height area comfortably */
    }

    .sub-hero-content .title-line:first-child {
        font-size: 1.3rem !important;
        display: block;
        margin-bottom: 5px;
        margin-top: 30px;
    }

    .sub-hero {
        height: 350px !important;
        background-position: center center !important;
    }
}


/* Hero Section (Reuse simplified version of franchise hero) */
.cost-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url('assets/bg.jpg') no-repeat center center/cover;
    /* Reuse bg or specific one */
}

.cost-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.cost-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.cost-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'NanumSquare', sans-serif;
}

.cost-hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
}

/* Cost Content Section */
.cost-content-section {
    padding: 0px 20px;
    /* background-color: #111; Removed background as requested */
    color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.cost-section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
}

.cost-section-desc {
    text-align: center;
    color: #999;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* Promo Box (10th Store Benefit) */
.promo-box {
    /* Darker Purple Gradient */
    background: linear-gradient(135deg, #320d5c 0%, #1a0433 100%);
    padding: 25px;
    /* Reduced from 40px */
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(50, 13, 92, 0.4);
    position: relative;
    overflow: hidden;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.promo-badge {
    display: inline-block;
    background-color: #000;
    color: #da8c04;
    padding: 6px 12px;
    /* Slightly reduced */
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 15px;
    /* Reduced from 20px */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.promo-title {
    font-size: 2.2rem;
    /* Slightly smaller title */
    font-weight: 800;
    margin-bottom: 10px;
    /* Reduced from 15px */
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-detail {
    font-size: 1.3rem;
    /* Slightly smaller detail */
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    /* Reduced from 10px */
}

.promo-status {
    margin-top: 15px;
    /* Reduced from 20px */
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 8px 15px;
    /* Reduced from 10px 20px */
    border-radius: 5px;
}

/* Cost Table / List */
.cost-table-container {
    background-color: #000;
  
    overflow: hidden;
    margin-bottom: 60px;
    border: 1px solid #333;
}

.cost-row {
    display: flex;
    border-bottom: 1px solid #333;
    transition: background-color 0.3s;
}

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

.cost-row:hover {
    background-color: #222;
}

.cost-category {
    flex: 1;
    padding: 25px;
    background-color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
    color: #da8c04;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #333;
    min-width: 150px;
}

.cost-detail {
    flex: 3;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ddd;
    font-size: 1.1rem;
}

.cost-price {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    text-align: right;
}

/* Additional Info Styles */
.cost-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 10px;
    text-align: right;
    line-height: 1.6;
}

.cost-total-area {
    margin-top: 40px;
    padding: 30px;
    border: 2px solid #da8c04;
    border-radius: 10px;
    text-align: center;
}

.total-label {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #da8c04;
}

.vat-text {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .cost-hero-title {
        font-size: 2rem;
    }

    .promo-title {
        font-size: 1.6rem;
    }

    .promo-detail {
        font-size: 1.1rem;
    }

    .cost-row {
        flex-direction: column;
    }

    .cost-category {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 15px;
        justify-content: flex-start;
    }

    .cost-detail {
        width: 100%;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* Support Page Specific Styles */

/* Hero Section */
.support-hero-section {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url('assets/bg.jpg') no-repeat center center/cover;
}

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

.support-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.support-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'NanumSquare', sans-serif;
}

.support-hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
}

/* Support Content Section */
.support-content-section {
    padding: 100px 20px;
    color: #fff;
    max-width: 1400px;
    /* Reduced to match notice width likely */
    margin: 0 auto;
}

.support-intro {
    text-align: center;
    margin-bottom: 150px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.support-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.support-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #da8c04;
    font-weight: 800;
}

.support-desc {
    font-size: 1.2rem;
    color: #bbb;
    line-height: 1.8;
}

/* Free Design Layout (Overlapping Image + Text) */
.support-list-container {
    display: flex;
    flex-direction: column;
    gap: 150px;max-width: 1400px;
margin: 0 auto;padding: 0px 20px;
}

.support-item {
    display: flex;
    align-items: center;
    /* Center vertically for overlap effect */
    justify-content: space-between;
    gap: 60px;
    opacity: 0;
    /* Hidden initially */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Default entry animation state */
.support-item {
    transform: translateY(50px);
}

/* Visible state */
.support-item.visible {
    opacity: 1;
    transform: translateY(0);
}



.support-img-box {
    flex: 1.1;
    position: relative;
    /* For absolute numbering */
    overflow: hidden;
    border-radius: 0;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
    z-index: 1;
}

.support-num {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    z-index: 5;
    text-shadow: none;
    font-family: 'Montserrat', sans-serif;
}

.support-item:hover .support-img-box {
    transform: scale(1.01);
}

.support-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.support-text-box {
    flex: 1;
    text-align: left;
    background-color: transparent;
    z-index: 2;
    position: relative;
    padding: 20px 0;
}

/* Overlap Logic - Unified */
.support-text-box {
    margin-left: 0;
    padding-left: 0;
}

.support-item-title {
    font-size: 2.4rem;
    /* Reduced from 2.8rem */
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    line-height: 1.1;
    text-shadow: none;
    /* Subtle shadow with background */
    background-color: transparent;
    /* Semi-transparent black background */
    padding: 0;
    /* Box padding */
    transition: color 1s ease 0.3s;
    /* Smooth color transition on scroll */
}

/* Title Overlap Logic - Removed */
.support-item .support-item-title {
    margin-left: 0;
}

.support-item.visible .support-item-title {
    color: #da8c04;
    /* Change to point color when visible */
}

/* Underline decoration for title - Ensure it is restored and visible */
.support-item-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    /* Reduced from 4px to 2px */
    background-color: #fff;
    /* White line for contrast against orange text */
    transition: width 0.8s ease-out 0.5s;
}

/* When text is right aligned (even child), line should start from right? 
   No, usually left-to-right or aligned with text direction. 
   If text-align is right, inline-block element wraps closely. 
   Moving 'left: 0' might look weird if text is aligned right. 
   But 'inline-block' makes the box shrink to fit text. So 'left:0' is left of the text box.
   Let's create a specific rule for right-aligned items if needed, or just keep left. */
.support-item:nth-child(even) .support-item-title::after {
    left: auto;
    right: 0;
    /* Animate from right for right-aligned items */
}

.support-item.visible .support-item-title::after {
    width: 100%;
    /* Full width of the title text */
}

.support-item-desc {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.support-detail-list li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateX(0);
    /* Reset default transform */
    transition: opacity 0.5s ease-out;
}

.support-item.visible .support-detail-list li {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .support-list-container {
        gap: 100px;
    }

    .support-item:nth-child(odd) .support-text-box {
        margin-left: -40px;
    }

    .support-item:nth-child(even) .support-text-box {
        margin-right: -40px;
    }

    .support-item-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .support-hero-title {
        font-size: 2rem;
    }

    .support-list-container {
        gap: 80px;
    }

    /* Disable overlap on mobile */
    .support-item {
        flex-direction: column !important;
        gap: 30px;
        align-items: flex-start;
    }

    .support-item:nth-child(even) {
        flex-direction: column !important;
        /* Keep image on top or bottom? usually image top. 
                                            But HTML order is Image first. 
                                            So just column is fine. */
    }

    .support-text-box {
        width: 100%;
        margin: 0 !important;
        /* Reset margins */
        text-align: left !important;
        /* Reset alignment */
        z-index: 1;
    }

    .support-img-box {
        width: 100%;
        flex: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .support-item-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
	 .cost-price {
        text-align: left;
        margin-top: 5px;
    }
}

/* Main Content Wrapper */
.logo-main-content {
    max-width: 1400px;
    /* Ensure 1400px width */
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-reveal.active {
    opacity: 1;
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Emotional Brand Story */
/* Brand Story Visual Section */
.brand-story-visual {
    position: relative;
    width: 100%;
    margin-bottom: 100px;
    background-image: url('/assets/b_bg.jpg');
    /* Placeholder image */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* Dark Overlay */
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.7);
    padding: 150px 0;
    overflow: hidden;
}

.bs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* Changed to column */
    align-items: center;
    /* Centered */
    justify-content: center;
    gap: 40px;
    /* Reduced gap */
    padding: 0 20px;
}

/* Vertical Label Column -> Now Top Header */
.bs-label-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bs-circle-deco {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    /* animation removed */
    opacity: 0.5;
}

.circle-text {
    fill: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.bs-vertical-title {
    writing-mode: horizontal-tb;
    /* Changed from vertical-rl */
    text-orientation: mixed;
    /* Reset */
    font-size: 2.5rem;
    /* Matched brand-section-title */
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    /* Reset spacing */
    margin: 0;
    line-height: 1.2;
}

.bs-title-bar {
    width: 2px;
    height: 100px;
    /* Long vertical line */
    background: #da8c04;
    /* Point color */
    margin-top: 40px;
}

/* Content Column */
.bs-content-col {
    padding-top: 0;
    text-align: center;
    /* Centered as requested */
    max-width: 800px;
    /* Limit width for readability */
}

.bs-headline {
    font-size: 3rem;
    font-weight: 100;
    /* Thin font */
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -1px;
    font-family: 'Nanum Gothic', sans-serif;
}

.bs-poem {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 50px;
}

.bs-poem p {
    margin: 5px 0;
}

.bs-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.bs-btn:hover {
    background-color: #fff;
    color: #000;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .bs-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .bs-vertical-title {
        writing-mode: horizontal-tb;
        font-size: 2rem;
        /* Adjusted for mobile */
        letter-spacing: 0;
    }

    .bs-title-bar {
        height: 50px;
        margin-top: 20px;
    }

    .bs-content-col {
        padding-top: 0;
        text-align: center;
    }

    .bs-content-col img {
        max-width: 300px !important;
        /* Increased from 250px */
        margin-bottom: 30px !important;
    }

    .bs-headline {
        font-size: 2rem;
    }
}

/* Grid Layout Common */
.logo-grid-section {
    margin-bottom: 100px;
}

.logo-grid-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    /* Bottom align */
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.section-title-sm {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-right: 30px;
}

/* CI Grid Container */
.ci-grid-container {
    display: flex;
    border: 1px solid #333;
    /* Outer Border */
}

.ci-grid-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background-color: #0a0a0a;
    /* Slight contrast from pure black */
    transition: background-color 0.3s;
}

.ci-grid-item:hover {
    background-color: #111;
}

.ci-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Left Large Column */
.item-large {
    flex: 1.5;
    border-right: 1px solid #333;
}

.item-large img {
    max-width: 80%;
    height: auto;
}

/* Right Column Stack */
.ci-grid-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-small {
    flex: 1;
    padding: 40px;
    /* First item has border bottom */
}

.ci-grid-right-col .item-small:first-child {
    border-bottom: 1px solid #333;
}

/* Color Palette Grid */
.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.color-card {
    background-color: #111;
    border: 1px solid #333;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.color-swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.color-details strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.color-details p {
    color: #888;
    font-size: 0.9rem;
    margin: 3px 0;
    font-family: 'Montserrat', sans-serif;
}

/* Headquarters Info Section */
.hq-info-section {
    margin-top: 100px;
    padding-top: 60px;
    /* border-top removed */
    text-align: left;
}

.hq-details {
    margin-top: 30px;
    font-size: 1.5rem;
    /* Larger Text */
    color: #fff;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    /* Space between Address and Tel */
}

.info-group {
    display: flex;
    align-items: center;
}

.hq-label {
    display: inline-block;
    color: #da8c04;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-right: 20px;
}

/* Map specific styles */
.hq-map-container {
    width: 100%;
    height: 450px;
    /* Large height */
    margin-top: 40px;
    border: 1px solid #333;
    background-color: #111;
}

.hq-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg);
    /* Dark mode map effect */
}

/* Responsive */
@media (max-width: 768px) {
    .mo-hide {
        display: none;
    }

    .ci-main-text {
        font-size: 1.6rem;
    }

    .logo-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-title-sm {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .ci-grid-container {
        flex-direction: column;
        border: none;
        /* Flatten for mobile? Or keep stacked */
    }

    .item-large {
        border-right: none;
        border-bottom: 1px solid #333;
        border: 1px solid #333;
        margin-bottom: 10px;
    }

    .ci-grid-right-col {
        border: 1px solid #333;
    }

    .color-palette-grid {
        grid-template-columns: 1fr;
    }

    .hq-info-section {
        margin-top: 60px;
        padding-top: 40px;
    }

    .hq-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        font-size: 1.2rem;
    }

    .hq-label {
        width: 80px;
        /* Slight adjustment to width as well if needed, but asking mainly for font size */
        margin-right: 10px;
        font-size: 0.8rem;
        /* Reduced from 1rem */
    }

    .hq-map-container {
        height: 300px;
    }
}

/* --- Core Values Section (Migrated from Brand Page) --- */
.brand-keyword-section {
    padding: 0 0 150px 0;
    /* Adjusted padding for logic flow */
    position: relative;
}

.brand-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 100px;
}

.comp-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
}

/* Connecting line */
.comp-list::before {
    content: '';
    position: absolute;
    top: 120px;
    /* Center of 240px height */
    left: 100px;
    right: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #da8c04, transparent);
    z-index: 0;
    opacity: 0.5;
}

/* Adjusted comp-item to be the main box */
.comp-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    /* Styles moved from .comp-circle */
    border: 1px solid #da8c04;
    background: #000;
    padding: 40px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.comp-item:hover {
    border-color: #da8c04;
    /* Remained same but explicit */
    box-shadow: 0 0 30px rgba(218, 140, 4, 0.3);
}

.comp-circle {
    width: 100%;
    /* Fill parent */
    height: auto;
    /* Removed specific border/bg/shadow styles */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    /* Reduced margin */
    position: relative;
    padding: 0;
    /* Reset padding */
}

/* Removed old .comp-item:hover .comp-circle */

.comp-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #da8c04;
    margin-bottom: 10px;
}



.comp-circle h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.comp-text-box {
    padding: 0;
    /* Remove horizontal padding since parent has it */
    margin-top: 20px;
    /* Separate from title */
}

.comp-text-box .desc {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    word-break: keep-all;
}

.gold-text {
    color: #da8c04;
}

/* Mobile adjustments for Core Values */
@media (max-width: 900px) {
    .comp-list {
        flex-direction: column;
        gap: 60px;
    }

    .comp-list::before {
        display: none;
    }

    .brand-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        line-height: 1.4;
        /* Increased line-height for better multi-line readability */
        padding: 0 20px;
        word-break: keep-all;
        /* Natural phrase breaking */
        overflow-wrap: break-word;
        /* Prevent overflow */
    }

    .comp-circle {
        width: 100%;
        height: auto;
        padding: 0;
        margin-bottom: 10px;
    }
}

