.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/*
Breadcrumb
*/
.guide-breadcrumb {
    padding: 30px 0 0;
    background: #fff;
}

.breadcrumb-back {
    color: #111;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 30px;
}

.breadcrumb-back:hover {
    color: #b70701;
}

.guide-divider {
    border: 0;
    height: 1px;
    background-color: #d2d2d2;
}


/*
Header
*/
.guide-page-header {
    padding: 40px 0 0px;
    background: #fff;
}

.guide-page-header h1 {
    font-size: 36px;
    font-weight: 900;
    color: #111;
}

.guide-page-header h2 {
    font-size: 23px;
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
    margin-top: 20px;
}

.guide-sub {
    margin-top: 10px;
    color: #666;
}

.guide-page-subtitle {
    margin-top: 40px;
    font-size: 15px;
    color: #111;
    line-height: 1.6;
    margin-bottom: 40px;
}

.guide-page-subtitle a {
    color: #b70701;
    font-weight: 600;
    text-decoration: none;
}


/*
Layout
*/
.guide-content-section {
    padding: 0 0 100px;
    background: #fff;
}

.guide-layout {
    display: flex;
    gap: 80px;
}

.guide-main {
    flex: 1;
    min-width: 0;
}

.guide-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    margin-top: -100px;
    margin-left: auto;
}


/*
아코디언 미사용 섹션 스타일
*/
.guide-section-box {
    margin-bottom: 0px;
}

.guide-section-box p {
    margin-top: 8px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 40px;
}

.guide-section-box a {
    color: #b70701;
    font-weight: 600;
    text-decoration: none;
}

.guide-section-box strong {
    color: #000000;
    font-weight: 700;
}

.guide-section-sub {
    margin-top: 8px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px !important;

}

.guide-section a{
    text-decoration: none;
    color: #b70701;
    font-weight: 600;
}

.section-title {
    font-size: 23px;
    font-weight: 700;
    color: #111;
    display: block;
}

.section-body h3{
    margin-top: -20px;
    margin-bottom: 8px;
    font-size: 15px;
}

.section-body  {
    margin-top: 20px;
    padding-left: 0;
    margin-bottom: 40px;
}

.guide-page-img {
    width: 750px;
    border-radius: 6px;
    height: auto;
    margin-top: 30px
}

.guide-main .guide-container {
    padding: 0;
    width: 100%;
    max-width: none;
}


/*
Accordion
*/
.guide-accordion {
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    padding: 6px 60px 6px 50px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 8px;
}

.accordion-header:hover {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    color:#b70701;
}

.accordion-header h2 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px 0;
}

.accordion-toggle {
    position: absolute;
    left: 20px; 
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #111;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.accordion-header.active .accordion-toggle {
    transform: translateY(-50%) rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
}

.accordion-content.active {
    max-height: 2000px;
}

.accordion-inner {
    padding: 32px 24px;
}


/*
Guide Sections inside Accordion
*/
.guide-section {
    margin-bottom: 32px;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-subtitle {
    margin-top: -33px;
    margin-bottom: 30px !important; 
}

.guide-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.guide-section p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.guide-section p:last-child {
    margin-bottom: 0;
}

.guide-section p strong {
    color: #000000;
    font-weight: 600;
}


/*
Steps
*/
.guide-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
    margin-bottom: 40px;
}

.guide-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 36px;
    margin-bottom: 5px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.guide-steps li:last-child {
    margin-bottom: 0;
}

.guide-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #111;
}

.guide-steps li strong {
    color: #000000;
    font-weight: 700;
}

.guide-steps > li {
    counter-increment: step-counter; 
    position: relative;
    padding-left: 36px;
    margin-bottom: 5px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.guide-steps li ul li {
    counter-increment: none; 
}


.guide-steps li ul {
    list-style: none;
    padding-left: 20px; 
    margin-top: 5px;
}


.guide-steps li ul li::before {
    content: "◦";
    font-size: 15px;
    color: #666;
}

.guide-steps li p{
    margin-bottom: 5px;
    padding-left: 28px; 
}

.guide-steps-service {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.guide-steps-service li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 5px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.guide-steps-service li:last-child {
    margin-bottom: 0;
}

.guide-steps-service li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #111;
}

.guide-steps-service li strong {
    color: #000000;
    font-weight: 700;
}

.guide-steps-service li ul {
    list-style: none;
    padding-left: 25px;
    margin-top: 8px;
    counter-reset: sub-step; 
}

.guide-steps-service li ul li {
    counter-increment: sub-step;
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: #555;
}

.guide-steps-service li ul li::before {
    content: counter(sub-step) ".";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    display: flex;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 15px;
    color: #666;
}

.guide-steps-bullet {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.guide-steps-bullet li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 5px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.guide-steps-bullet li:last-child {
    margin-bottom: 0;
}

.guide-steps-bullet li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: #111;
}

.guide-steps-bullet li strong {
    color: #000000;
    font-weight: 700;
}

.guide-steps-bullet li ul li {
    counter-increment: none; 
}


.guide-steps-bullet li ul {
    list-style: none;
    padding-left: 20px; 
    margin-top: 5px;
}

.guide-steps-bullet li ul li::before {
    content: "◦";
    font-size: 15px;
    color: #666;
}

.guide-steps-bullet li p{
    margin-bottom: 5px;
    padding-left: 28px; 
}

.guide-steps-bullet p {
    margin-bottom: 5px;
}

.no-marker {
  list-style: none;
  padding-left: 0;
}

.no-marker > li {
  margin-left: 0;
}

.no-marker > li.list-intro {
  font-weight: 500;
  margin-bottom: 6px;
}


/*
Table
*/
.privacy-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 40px;
}

.privacy-table th {
    background: #f0f0f0;
}

.privacy-table th, .privacy-table td {
    border: 2px solid #c4c4c4;
    padding: 12px 15px;
    font-size: 15px;
}


/*
Keyboard Keys
*/
kbd {
    display: inline-block;
    padding: 3px 8px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}


/*
Notes and Warnings
*/
.guide-note {
    border-left: 4px solid #d8d8d8;
    padding: 10px 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.guide-note p {
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 15px;
}

.guide-note p:last-child {
    margin-bottom: 0;
}

.guide-note a {
    text-decoration: none;
    color: #b70701;
    font-weight: 600;
}

.guide-warning {
    border-left: 4px solid #b70701;
    padding: 10px 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.guide-warning p {
    margin-bottom: 0;
    color: #1a1a1a;
    font-size: 15px;
}

.guide-warning a {
    text-decoration: none;
    color: #b70701;
    font-weight: 600;
}

.pro-badge {
    display: inline-block;
    background: #b70701;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}


/*
Sidebar
*/
.sidebar-section {
    background: #ffffff;
    border-top: 6px solid #b70701 !important;
    border: 1px solid #d0d0d0;
    padding: 28px;
    border-radius: 6px;
}

.sidebar-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    margin-bottom: 12px;
}

.related-links li:last-child {
    margin-bottom: 0;
}

.related-links a {
    color: #111111;
    font-size: 17px;
    font-weight: 400;
    transition: text-decoration 0.2s ease;
    text-decoration: underline;
    display: block;
}

.related-links a:hover {
    color: #555555;
}


[id] {
    scroll-margin-top: 100px;
}

.guide-service-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    margin-top: -100px;
    margin-left: auto;
}

.sidebar-service-section {
    background: #ffffff;
    border-top: 6px solid #b70701 !important;
    padding: 28px;
    border-radius: 6px;
}

.sidebar-service-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

.service-related-links {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.service-related-links::-webkit-scrollbar {
    display: none;
}

.service-related-links li {
    margin-bottom: 12px;
}

.service-related-links li:last-child {
    margin-bottom: 0;
}

.service-related-links a {
    color: #111111;
    font-size: 17px;
    font-weight: 400;
    transition: text-decoration 0.2s ease;
    text-decoration-line: none;
    display: block;
    padding: 10px 10px;
}

.service-related-links a:hover {
    color: #8d8d8d;
}

/*
Responsive
*/
@media (max-width: 1024px) {
    .guide-layout {
        gap: 60px;
        display: flex;
        flex-direction: column;
    }

    .guide-sidebar {
        width: 350px;
        position: static;
        margin-top: 50px;
        margin-left: 0;
    }

    .guide-page-img {
        width: 700px;
        margin-top: 40px
    }

    .guide-service-sidebar {
        width: 100%;
        position: static;
        margin-top: 40px;
        margin-left: 0;
    }

    .sidebar-service-section {
        border-top: 4px solid #b70701 !important; 
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .guide-container {
        padding: 0 20px;
    }

    .guide-breadcrumb {
        padding: 30px 0 8px;
    }

    .guide-page-header {
        padding: 30px 0 20px;
    }

    .guide-page-header h1 {
        font-size: 32px;
    }

    .guide-page-subtitle {
        font-size: 16px;
    }

    .guide-page-img {
        width: 330px;
        border-radius: 6px;
        height: auto;
        margin-top: 20px
    }

    .guide-subtitle {
        margin-top: -31px;
    }

    .guide-content-section {
        padding: 0 0 60px;
    }

    .guide-layout {
        flex-direction: column;
        gap: 40px;
    }

    .guide-sidebar {
        width: 100%;
        position: static;
        margin-top: 0;
    }

    .accordion-header {
        padding: 10px 50px 10px 50px;
    }

    .accordion-header h2 {
        font-size: 15px;
    }

    .accordion-subtitle {
        font-size: 14px;
    }

    .accordion-toggle {
        right: 20px;
    }

    .accordion-inner {
        padding: 24px 20px;
    }

    .pro-badge {
        font-size: 9px;
    }

    .guide-section h3 {
        font-size: 16px;
    }

    .guide-section p {
        font-size: 15px;
    }

    .guide-steps li {
        font-size: 15px;
    }

    .guide-service-sidebar {
        width: 100%;
        position: static;
        margin-top: 30px;
    }

    .sidebar-service-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-related-links a {
        font-size: 15px;
        padding: 8px 5px; 
    }

    .service-related-links {
        max-height: none; 
        overflow-y: visible;
    }
}