:root {
    /* Colors */
    --color-bg-primary: #294B54;
    /* Deep Navy/Teal */
    --color-bg-darker: #1E383E;
    --color-accent: #f2ba1c;
    /* Yellow */
    --color-accent-hover: #dca310;
    --color-text-main: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-light-bg: #f4f7f6;
    --color-light-text: #333333;

    /* Typography */
    --font-kr: 'Noto Sans KR', sans-serif;
    --font-en: 'Montserrat', sans-serif;

    /* Spacing & Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-kr);
    color: var(--color-light-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 24px 0;
}

.navbar.scrolled {
    background-color: var(--color-bg-darker);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: var(--color-accent);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    color: #333333;
    display: block;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
}

.dropdown a:hover {
    background-color: var(--color-light-bg);
    color: var(--color-bg-primary);
}

/* Arrow indicator */
.arrow {
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: 2px;
    transition: var(--transition);
}

.arrow.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.nav-item:hover .arrow.down {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.btn-quote-nav {
    border: 1px solid var(--color-accent);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--color-accent);
    margin-left: 10px;
}

.btn-quote-nav:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-darker) !important;
}

/* Hamburger (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-text-main);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-color: var(--color-bg-primary);
    background-image: linear-gradient(135deg, var(--color-bg-darker) 0%, var(--color-bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-main);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(41, 75, 84, 0) 0%, rgba(30, 56, 62, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-darker);
    box-shadow: 0 4px 15px rgba(242, 186, 28, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 186, 28, 0.4);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-block {
    display: block;
    width: 100%;
}

/* General Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-bg-primary);
}

.section-title.white {
    color: var(--color-text-main);
    text-align: left;
    margin-bottom: 24px;
}

.bg-light {
    background-color: var(--color-light-bg);
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 50px auto;
    color: #666;
}

/* 1. 그리?? 가�?3?�로 ?�렬 */
.cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    /* 1:1:1 비율 */
    gap: 25px !important;
    padding: 40px 0;
    align-items: start !important;
}

/* 2. 링크 ?�역: 카드 ?�체�??�릭 가?�하�?*/
.card-link {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    /* ?��? ?�두�?*/
    border-radius: 12px;
    padding: 35px 30px;
    /* ?�쪽 ?�백 ?�넉??*/
    height: 100% !important;
    /* 카드 ?�이 ?�일 */
    min-height: 205px;
    /* 최소 ?�이 ?�정 */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    /* ?�스??중앙 ?�렬 */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);

}

/* 4. 마우???�렸?????�과 */
.card-link:hover .card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--color-accent);
}

.card h3 {
    margin-top: 0 !important;
    font-size: 1.5rem;
    color: var(--color-bg-primary);
    margin-bottom: 16px;
}

.card p {
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

/* Business Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-family: var(--font-en);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-bg-primary);
}

/* Quote Form Section */
.quote {
    background-color: var(--color-bg-darker);
    color: var(--color-text-main);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list strong {
    color: var(--color-accent);
}

.quote-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-bg-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-kr);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(242, 186, 28, 0.2);
}

/* Footer */
.footer {
    background-color: #15272b;
    color: var(--color-text-muted);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--color-text-main);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

/* Media Queries for Responsive */
@media (max-width: 992px) {

    .cards-grid,
    .stats-grid,
    .quote-wrapper {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-bg-darker);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 20px;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1001; /* Ensure it is above the navbar and hero overlay */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 5px 0 !important; /* ?�아???�백????줄여 간격??좁힙?�다 */
        width: 100%; /* ?�체 ?�비 차�? */
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-link {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        padding: 10px 0;
        gap: 8px !important; /* 글?��? ?�살???�이 간격 */
    }

    .arrow {
        display: inline-block !important;
        border: solid currentColor;
        border-width: 0 2px 2px 0;
        padding: 3px;
        transition: var(--transition);
        visibility: visible !important;
        opacity: 1 !important;
    }

    .arrow.down {
        transform: rotate(45deg) !important;
    }

    .nav-item.active .arrow.down {
        transform: rotate(-135deg) !important;
    }

    .dropdown {
        position: static !important;   /* ?�둥 ?�다?�는 ?�정???�제?�고 ?�서?��?배치 */
        display: none;                /* 기본?�??��? */
        width: 100% !important;       /* 가�?�?채우�?*/
        padding: 0 !important;        /* ?�백 ?�전 ?�거 */
        margin: 0 !important;
        left: 0 !important;           /* ?�쪽 ?�치 초기??*/
        transform: none !important;    /* ?�동 ?�과 ?�거 */
        box-shadow: none !important;  /* 그림???�거 */
        opacity: 1 !important;        /* ?�명??초기??*/
        visibility: visible !important; /* 가?�성 초기??*/
        background-color: transparent !important;
    }

    .nav-item.active .dropdown {
        display: block !important;    /* ?�릭 ???�로�??�연?�럽�??�쳐�?*/
    }

    .dropdown li {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .dropdown a {
        color: var(--color-text-muted) !important;
        text-align: center !important; /* 글??중앙 ?�렬 */
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;    /* ?�치?�기 ?�하�??�이 조절 */
        font-size: 0.9375rem !important;
    }

    .dropdown a:hover {
        background-color: transparent !important;
        color: var(--color-accent) !important;
    }

    .btn-quote-nav {
        margin: 20px auto 10px !important; /* ???�백 20px, ?�래 10px�?중앙 배치 */
        display: inline-block !important; /* ?�비�??�체�?�?채우지 ?�게 ?�정 */
        width: auto !important;          /* ?�스???�기??맞게 ?�동?�로 ?�비 조절 */
        padding: 10px 30px !important;    /* ?�치?�기 ?�하?�록 ?�아???�딩 부??*/
        border-radius: 30px !important;
        font-size: 0.9375rem !important;
    }
}

/* Hero Section Custom Style */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* 배경?�을 �?번째 코드???�이�??�으�??�정 */
    background: radial-gradient(circle at top right, #3a626a, #2C4C52);
    color: #ffffff;
    padding-top: 80px;
}

.hero-tag {
    display: block;
    color: #F2B824;
    /* ?�인???�로??*/
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #d1d1d1;
    max-width: 800px;
    margin: 0 auto 40px;
    word-break: keep-all;
}

/* ?�니메이???�과 (?�크립트?�??�동 ?�요) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* 반응???�??*/
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* --- ?�루???�이지 ?�용 ?��???(중복 ?�거 ?�합�? --- */

.section-header {
    background: #2C4C52;
    /* 배경??*/
    padding: 200px 0 100px;
    /* ?�단 ?�백??충분??주어 ?�비바�? 겹침 방�? */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ?�기 붙여?�기 */

.section-header .section-desc {
    display: block !important;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    margin: 0 auto !important;
    max-width: 600px;
}


html {
    /* ?�용??짧아????�� ?�크롤바 ?�역???�시?�여 ?�면 밀�?방�? */
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* Newsletter Board Style */
.board-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.board-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.newsletter-table {
    width: 100%;
    border-collapse: collapse;
}

.newsletter-table th {
    padding: 15px;
    border-bottom: 2px solid var(--color-bg-primary);
    color: var(--color-bg-primary);
    font-weight: 700;
}

.newsletter-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: #666;
}

.newsletter-table .td-title {
    text-align: left;
    font-weight: 500;
}

.newsletter-table .td-title a {
    color: #333;
    transition: var(--transition);
}

.newsletter-table .td-title a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

/* ?�이지?�이???��???*/
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.page-link.active {
    background: var(--color-bg-primary);
    color: #fff;
    border-color: var(--color-bg-primary);
}

.page-link:hover:not(.active) {
    background: var(--color-light-bg);
}

.section-header .hero-title {
    /* 1?�위: ?�리?�다?? 2?�위: ?�플 고딕, 3?�위: ?�스??고딕 */
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif !important;

    font-weight: 600 !important;
    /* ?��?지처럼 ?�무 ?�껍지???��????��? ?�께 */
    font-size: 2.8rem !important;
    /* ?��?지?�?비슷???�당???�기 */
    letter-spacing: -0.05rem !important;
    /* ?�심: ?�간??미세?�게 좁�???�??�낌???�니??*/

    text-transform: none !important;
    /* ?�문??강제 변??금�? */
    color: #ffffff !important;
    line-height: 1.2 !important;
}



/* �?글???�인??컬러 */

.section-header .hero-title::first-letter {

    color: #F2B824 !important;

}

.section-header .section-desc {
    font-family: 'Noto Sans KR', sans-serif !important;
    font-weight: 300 !important;
    color: #d1d1d1 !important;
    margin-top: 10px;
}

/* 카드 링크 기본 ?��???*/
.card-link {
    text-decoration: none;
    /* 밑줄 ?�거 */
    color: inherit;
    display: block;
}

.card {
    overflow: hidden;
    /* ?��?지가 카드 밖으�??��?지 ?�게 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: #fff;
}

/* 1. 마우?��? ?�리�?카드 ?�체가 ?�짝 ?�리???�과 */
.card-link:hover .card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 2. ?��?지 ?��? ?�과 (??번째 ?��?지 ?�낌) */
.card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    /* ?��?지 ?�이 고정 */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* 부?�러???��? */
}

.card-link:hover .card-image img {
    transform: scale(1.1);
    /* 마우???�리�?1.1�??��? */
}

/* 3. ?�버?�이 ?�과 (?��?지 ?�에 ?�두??�??�성) */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* 검?�??반투�?*/
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* 처음????보임 */
    transition: opacity 0.3s ease;
}

.card-overlay span {
    color: #fff;
    font-weight: 600;
    border: 1px solid #fff;
    padding: 8px 16px;
}

.card-link:hover .card-overlay {
    opacity: 1;
    /* 마우???�리�??��???*/
}

/* ?�사�?*/
/* ?��??�인 ?�사�??�션 ?��???*/
.greeting-modern {
    position: relative;
    padding: 150px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

/* 배경 ?�에 ?�?�?�게 깔리?????�어 ?�어 */
.modern-bg-text {
    position: absolute;
    top: 50px;
    left: -20px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* ?�주 ?�하�?처리 */
    font-family: var(--font-en);
    z-index: 1;
}

.modern-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}

.modern-left {
    flex: 1;
}

.accent-box {
    width: 40px;
    height: 6px;
    background: var(--color-accent);
    margin-bottom: 25px;
}

.modern-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--color-bg-primary);
    margin-bottom: 20px;
}

.modern-title span {
    font-weight: 300;
    color: #888;
}

.modern-tagline {
    font-size: 1.2rem;
    color: #666;
    letter-spacing: -0.5px;
}

/* ?�른�??�이??카드 ?�자??*/
.modern-card {
    flex: 1.2;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.intro-p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
}

.text-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
    word-break: keep-all;
}

/* ?�명 ?�역 ?��??�링 */
.modern-sign {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sign-text span {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 700;
}

.sign-text p {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-bg-primary);
}

.sign-image-placeholder {
    font-family: 'Brush Script MT', cursive;
    /* ?�명 ?�낌 ?�는 ?�트 ?�시 ?�용 */
    font-size: 2.5rem;
    color: #ddd;
}

/* 반응??모바???�정 */
@media (max-width: 992px) {
    .modern-wrapper {
        flex-direction: column;
    }

    .modern-bg-text {
        font-size: 6rem;
        top: 10px;
    }

    .modern-card {
        padding: 40px 30px;
    }
}

/* 방금 ???�스?�터?�??�일???�기 ?�정 */
.view-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.view-header {
    background: #fff;
    padding: 50px 60px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
}

.view-header-top {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-tag {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.post-date {
    color: #999;
    font-size: 0.9rem;
    margin-left: 10px;
}

.print-btn {
    background: none;
    border: 1px solid #eee;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #777;
    cursor: pointer;
    transition: var(--transition);
}

.print-btn:hover {
    background: #f9f9f9;
    border-color: #ddd;
}

.view-title {
    font-size: 2.2rem;
    color: var(--color-bg-primary);
    line-height: 1.4;
    word-break: keep-all;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
}

.view-content {
    background: #fff;
    padding: 60px 80px;
    border-top: 1px solid #eee;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    min-height: 450px;
}

/* ?�스?�터 모바???�?? ?�백 최적??*/
@media (max-width: 768px) {
    .view-container {
        padding: 0 10px; /* 컨테?�너 ?�체 ?�백 축소 */
    }
    
    .view-header {
        padding: 30px 20px; /* ?�더 ?�백 ?�??축소 */
    }
    
    .view-title {
        font-size: 1.5rem; /* ?�목 ?�기 조절 */
    }
    
    .view-content {
        padding: 30px 20px; /* 본문 ?�백 ?�??축소 */
    }
    
    .post-body {
        font-size: 1rem; /* 모바??가?�성???�해 ?�트 ?�짝 축소 */
    }

    .post-body h3 {
        font-size: 1.5rem;
        margin: 3rem 0 1rem;
    }

    .post-body h4 {
        font-size: 1.2rem;
    }
}

.post-body {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
    font-family: 'Pretendard', sans-serif;
    text-align: left; /* justify?�서 left�?변경하???�어 간격???�정?�게 ?��? */
    word-break: keep-all;
}

.post-body p {
    margin-bottom: 1.2rem;
}

.post-body h3 {
    font-size: 1.8rem;
    color: var(--color-bg-primary);
    margin: 4rem 0 1.2rem; /* ?�단 ?�백 ?�???��?, ?�단 축소 */
    font-weight: 800;
    letter-spacing: -0.02em;
}

.post-body h4 {
    font-size: 1.4rem;
    color: #333;
    margin: 3rem 0 0.8rem; /* ?�단 ?�백 ?��?, ?�단 축소 */
    font-weight: 700;
}

.post-body h5 {
    font-size: 1.2rem;
    color: #555;
    margin: 2.2rem 0 0.6rem; /* ?�단 ?�백 ?��?, ?�단 축소 */
    font-weight: 700;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 10px 0 15px 0; /* ?�단 ?�백??30px?�서 15px�?축소 */
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.view-footer-simple {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 50px;
    padding-bottom: 80px;
}

.view-footer-simple p {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-list {
    display: inline-block;
    padding: 16px 45px;
    background: var(--color-bg-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-list:hover {
    background: var(--color-bg-darker);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ?��?지가 �?차고 ?�명?�게 보이?�록 ?�정 */
.image-placeholder {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
}

/* --- 솔루션 페이지 공통 스타일 --- */
.solution-text h2 {
    font-size: 35px;
    color: #2C4C52;
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .solution-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 85% !important;
    }
}