/* Warning Icon Container for Center Alignment */
.warning-ico-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.warning-ico {
    width: 60px;
    height: auto;
}

/* Exclamation Icon Container for Center Alignment */
.exclamation-ico-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.exclamation-ico {
    width: 80px;
    height: auto;
}

/* Default - Mobile Line Breaks Hidden on Desktop */
.mobile-br {
    display: none;
}

/* PC Line Breaks - Visible on Desktop, Hidden on Mobile */
.pc-br {
    display: inline;
}

/* Default Desktop Table Spacing */
.mobile-table-spacing {
    margin-top: -100px;
}

/* Mobile Review Image - PC에서는 숨김 */
.mobile-review-img {
    display: none;
}

/* section */

.section-1 {
    background-image: url(../images/page01/01.webp);
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    height: 100vh;
}
.section-3 {
    background: linear-gradient(90deg, #ecebe7 0%, #faf9f6 100%);
}
.section-4 {
    background-image: url(../images/section-4-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-5 {
    background: linear-gradient(90deg, #ecebe7 0%, #ffffff 100%);
}
.section-8 {
    background: linear-gradient(90deg, #ecebe7 0%, #faf9f6 100%);
    padding-bottom: 0 !important;
}

.section-10 {
    background: linear-gradient(90deg, #ecebe7 0%, #faf9f6 100%);
}
.section-11 {
    background: linear-gradient(90deg, #6f0000 0%, #ca0606 100%);
    color: #fff;
}
.section-12 {
    background-image: url(../images/section-12-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-14 {
    background: linear-gradient(90deg, #ecebe7 0%, #faf9f6 100%);
}



/* Card Components */
.card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 80px 20px;
}

.card {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    border-top: 8px solid #ca0606;
    background: white;
    overflow: hidden;
}

.card-image {
    margin: 30px;
}

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

.card-content {
    width: 100%;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-family: "Pretendard", sans-serif !important;
}

.divider {
    border-top: 2px dashed #ccc;
    margin: 24px 0;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight {
    position: relative;
    z-index: 1;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -2px;
    right: -2px;
    height: 16px;
    background: linear-gradient(90deg, #fff700, #ffea8f);
    z-index: -1;
    border-radius: 3px;
}

.main-highlight {
    background: #ca0606;
    color: #fff;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: bold;
}

/* Stats Components */
.stats-container {
    display: flex;
    gap: 20px;
    padding: 30px;
    justify-content: space-between;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #ddd;
}

.stats-card {
    flex: 1;
    text-align: center;
}

.stats-card h3 {
    margin-bottom: 20px;
    line-height: 1.4;
}

.stats-card p {
    font-weight: bold;
    line-height: 1.2;
}

/* Sales Table Components */
.sales-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    border: 1px solid #e0e0e0;
}

.table-header {
    background: #ca0606;
    color: white;
    padding: 15px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.table-header h3 {
    margin: 0;
    font-weight: bold;
    font-size: 28px;
    font-family: "GmarketSans", sans-serif;
}

.table-body {
    padding: 0 60px;
    background: #f8f8f8;
}

.table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.table-row > div {
    font-size: 28px;
    font-weight: 500;
}

.table-row > div:first-child {
    text-align: left;
    flex: 1;
}

.table-row > div:last-child {
    text-align: right;
    flex: 0 0 auto;
}

.table-header-row {
    background: #f0f0f0;
    margin: 0 -30px;
    padding: 15px 30px !important;
    border-bottom: 2px solid #ddd !important;
}

.table-header-row > div {
    font-size: 32px !important;
    font-weight: bold !important;
    color: #333 !important;
}

.table-footer {
    background: #242424;
    color: white;
    padding: 25px 60px;
    border-radius: 0 0 20px 20px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

.footer-row > div {
    font-size: 32px;
    font-weight: bold;
}

.footer-row > div:first-child {
    text-align: left;
    flex: 1;
}

.footer-row > div:last-child {
    flex: 0 0 auto;
}

/* 도입비, 가맹비 강조 스타일 */
.table-row .main {
    font-size: 32px !important;
    font-weight: bold !important;
    color: #ca0606 !important;
}

.step-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.step-card img {
    margin-bottom: 40px;
}

.step-dot {
    width: 12px;
    height: 12px;
    background: #ca0606;
    border-radius: 50%;
    position: relative;
    animation: vibeInfinite 2s ease-in-out infinite;
}

/* Vibe infinite 애니메이션 */
@keyframes vibeInfinite {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(202, 6, 6, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(202, 6, 6, 0);
    }
}

/* Section-5 Sales Table 3열 구조 */
.section-5 .table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 20px 0px;
}

.section-5 .table-row > div:first-child {
    text-align: left;
    justify-self: start;
}

.section-5 .table-row > div:nth-child(2) {
    text-align: center;
    justify-self: center;
}

.section-5 .table-row > div:last-child {
    text-align: right;
    justify-self: end;
}

.section-5 .footer-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    gap: 10px;
}

.section-5 .footer-row > div:first-child {
    text-align: left;
    justify-self: start;
}

.section-5 .footer-row > div:nth-child(2) {
    text-align: center;
    justify-self: center;
}

.section-5 .footer-row > div:last-child {
    text-align: right;
    justify-self: end;
}

.step-label {
    font-family: GmarketSans;
    font-weight: bold;
    color: #ca0606;
}

.step-card h3 {
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    word-break: keep-all;
}

/* Rating Badge Components */
.rating-badge {
    display: inline-flex;
    background: #2ac1bc;
    border-radius: 999px;
    overflow: hidden;
    font-family: "GmarketSans", sans-serif;
}

.rating-label {
    color: white;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: "GmarketSans", sans-serif !important;
}

.rating-label span {
    font-family: "GmarketSans", sans-serif !important;
}

.rating-score {
    background: white;
    color: #242424;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    border-radius: 50px;
    margin: 4px;
    font-family: "GmarketSans", sans-serif !important;
}

.rating-score span {
    font-family: "GmarketSans", sans-serif !important;
}

.star {
    width: 24px;
    height: 24px;
    background-image: url('../images/star.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Platform Grid Components */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    padding: 0 20px;
    min-width: 60%;
    justify-self: center;
}

.platform-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.platform-card h3 {
    margin: 0;
    font-weight: bold;
}

/* Marketing Cards Components */
.marketing-cards {
    display: flex;
    gap: 16px;
    padding: 0 20px;
    justify-content: center;
}

.marketing-card {
    flex: 1;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.marketing-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.marketing-content {
    background: #242424;
    color: white;
    padding: 30px;
    position: relative;
}

.marketing-content h3 {
    color: white;
    margin: 0;
    font-weight: bold;
    line-height: 1.3;
}

.card-number {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 80px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    font-family: "GmarketSans", sans-serif;
}

/* Q&A Components */
.qa-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 40px 40px 0 40px;
}

.qa-set {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question {
    display: flex;
    align-items: start;
}

.question h3 {
    margin: 0;
    color: #ca0606;
    font-weight: bold;
    text-align: left;
}

.answer {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 30px 40px;
    text-align: left;
    margin-left: 30px;
}

.answer p {
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    word-break: keep-all;
}

/* Contact Form Components */
.contact-form {
    max-width: 1000px;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.main-contact-form {
    margin: 60px auto;
}

.form-group {
    margin-bottom: 80px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 28px;
    color: #333;
    font-family: "Pretendard", sans-serif;
}

.required {
    color: #ca0606;
    font-weight: bold;
}

.privacy-content {
    margin-bottom: 10px;
}

.privacy-text {
    width: 100%;
    height: 180px;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    background: #f8f8f8;
    resize: none;
    color: #666;
    font-family: "Pretendard", sans-serif;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.checkbox-input {
    width: 24px;
    height: 24px;
    accent-color: #ca0606;
}

.checkbox-label {
    cursor: pointer;
    margin: 0;
    font-size: 24px;
    color: #333;
    font-family: "Pretendard", sans-serif;
}

.form-input {
    width: 100%;
    padding: 0 0 20px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-size: 24px;
    font-family: "Pretendard", sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
    box-sizing: border-box;
    max-width: 100%;
}

.form-input:focus {
    border-bottom-color: #ca0606;
}

.form-input::placeholder {
    color: #bbb;
    font-size: 24px;
    font-weight: 300;
}

.contact-form .btn-red {
    width: 100%;
    margin-top: 60px;
    justify-content: center;
    padding: 30px 80px;
    font-size: 32px;
    border-radius: 999px;
}

/* Button Components */
.btn-red {
    background: linear-gradient(90deg, #ca0606, #ed1818);
    color: white;
    padding: 24px 80px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-family: "GmarketSans", sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-self: center;
    justify-content: space-between;
    gap: 20px;
    text-decoration: none;
    transition: all 0.5s ease;
    min-width: 250px;
    max-width: 100%;
}

.btn-red:hover {
    background: #b50505;
    transform: translateY(-2px);
}

.btn-red::after {
    content: "›";
    font-size: 40px;
    font-weight: bold;
}

.table-header-row {
    background-color: #f8f8f8;
    font-weight: bold;
}

.table-header-row > div {
    color: #333 !important;
    font-weight: bold;
}

.revenue-row {
    border-bottom: 1px solid #f0f0f0 !important;
}

.revenue-row > div {
    color: #ca0606 !important;
    font-weight: bold;
}

.black-banner {
    background: #242424;
    border-radius: 50px;
    padding: 16px 40px;
    display: inline-block;
}

.black-banner p {
    color: #fff;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

/* Review Slider Components */
.review-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* PC: 3개 이미지 모두 표시 */
@media (min-width: 769px) {
    .review-slider {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        padding: 0 20px;
        overflow: hidden;
    }
    
    .review-slide {
        flex: 1;
        max-width: 400px;
        opacity: 1;
        transform: none;
    }
    
    .review-img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        max-width: 100%;
        object-fit: contain;
    }
}

/* 모바일: 슬라이드 동작 */
@media (max-width: 768px) {
    .review-slider {
        position: relative;
        width: 100%;
        min-height: 400px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 5px;
        margin: 0 auto;
        max-width: 100vw;
    }
    
    .review-slide {
        position: absolute;
        top: 50%;
        width: 70%;
        max-width: 250px;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 8px;
        overflow: hidden;
    }
    
    /* 중앙 슬라이드 (항상 active) */
    .review-slide.center {
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        z-index: 3;
        opacity: 1;
        filter: none;
    }
    
    /* 왼쪽 슬라이드 */
    .review-slide.left {
        left: 20%;
        transform: translate(-50%, -50%) scale(0.8);
        z-index: 2;
        opacity: 0.5;
        filter: blur(1px) brightness(0.6);
    }
    
    /* 오른쪽 슬라이드 */
    .review-slide.right {
        left: 80%;
        transform: translate(-50%, -50%) scale(0.8);
        z-index: 2;
        opacity: 0.5;
        filter: blur(1px) brightness(0.6);
    }
    
    /* 숨겨진 슬라이드 */
    .review-slide.hidden {
        opacity: 0;
        z-index: 1;
        transform: translate(-50%, -50%) scale(0.6);
    }
    
    .review-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
        max-width: 100%;
        object-fit: contain;
    }
}



/* Body padding for fixed banner */
body {
    padding-bottom: 80px;
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 425px) {
    body {
        padding-bottom: 120px;
    }
}

@media (max-width: 768px) and (min-width: 426px) {
    body {
        padding-bottom: 160px;
    }
}

/* Fixed CTA Banner */
.fixed-cta-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ca0606, #ed1818);
    z-index: 1000;
    padding: 20px;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    position: relative;
    box-sizing: border-box;
}

/* LOGO (PC only) */
.cta-logo {
    flex-shrink: 0;
}

.cta-logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    font-family: "GmarketSans", sans-serif;
    letter-spacing: 2px;
}

/* 말풍선 */
.cta-speech-bubble {
    position: absolute;
    top: -45px;
    right: 20px;
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    font-family: "Pretendard", sans-serif;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    border: 2px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    animation: bounceUpDown 2s ease-in-out infinite;
}

.cta-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.cta-speech-bubble span {
    color: #ca0606;
    font-weight: bold;
}

/* 폼 스타일 */
.cta-form {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: 100%;
    overflow-x: hidden;
}

.cta-form-fields {
    display: flex;
    gap: 10px;
    flex: 1;
}

.cta-input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Pretendard", sans-serif;
    background: white;
    flex: 1;
    min-width: 120px;
}

.cta-input::placeholder {
    color: #999;
}

.cta-checkbox-group {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.cta-checkbox {
    width: 16px;
    height: 16px;
}

.cta-checkbox-label {
    color: white;
    font-size: 12px;
    font-family: "Pretendard", sans-serif;
    cursor: pointer;
}

.cta-submit-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "GmarketSans", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-submit-btn:hover {
    background: #222;
    transform: translateY(-1px);
}

/* 위아래 바운스 애니메이션 */
@keyframes bounceUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* 모바일 반응형 */
@media (max-width: 425px) {
    .fixed-cta-banner {
        padding: 12px 8px;
    }
    
    .cta-logo {
        display: none;
    }
    
    .cta-speech-bubble {
        top: -32px;
        right: 10px;
        font-size: 11px;
        padding: 5px 10px;
        border-radius: 15px;
    }
    
    .cta-speech-bubble::after {
        right: 15px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid white;
        bottom: -5px;
    }
    
    .cta-form {
        flex-direction: column;
        gap: 6px;
    }
    
    .cta-form-fields {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 4px;
    }
    
    .cta-input {
        flex: 1;
        min-width: 0;
        max-width: 100%;
        padding: 8px 6px;
        font-size: 11px;
        border-radius: 6px;
        box-sizing: border-box;
    }
    
    .cta-checkbox-group {
        justify-content: center;
        margin: 4px 0;
        gap: 4px;
    }
    
    .cta-checkbox {
        width: 14px;
        height: 14px;
    }
    
    .cta-checkbox-label {
        font-size: 10px;
    }
    
    .cta-submit-btn {
        width: 100%;
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 6px;
    }
}

/* Medium Desktop CTA - 1000px */
@media (max-width: 1200px) and (min-width: 769px) {
    .fixed-cta-banner {
        padding: 20px 15px;
    }
    
    .cta-logo-text {
        font-size: 26px;
    }
    
    .cta-speech-bubble {
        top: -40px;
        right: 25px;
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 20px;
    }
    
    .cta-speech-bubble::after {
        right: 25px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid white;
        bottom: -8px;
    }
    
    .cta-form-fields {
        gap: 12px;
    }
    
    .cta-input {
        padding: 14px 12px;
        font-size: 14px;
        border-radius: 8px;
        min-width: 140px;
    }
    
    .cta-checkbox {
        width: 18px;
        height: 18px;
    }
    
    .cta-checkbox-label {
        font-size: 14px;
    }
    
    .cta-submit-btn {
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    body {
        padding-bottom: 130px !important;
    }
}

/* Tablet CTA */
@media (max-width: 768px) and (min-width: 426px) {
    .fixed-cta-banner {
        padding: 15px 10px;
    }
    
    .cta-logo {
        display: none;
    }
    
    .cta-speech-bubble {
        top: -35px;
        right: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .cta-form-fields {
        gap: 8px;
    }
    
    .cta-input {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .cta-submit-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ======================== 
   MOBILE RESPONSIVE STYLES 
   ======================== */

/* Mobile to Small Tablet - 768px 이하 공통 처리 */
@media (max-width: 768px) {
    
    /* 모든 컨테이너 overflow 방지 */
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .container, .content, .section {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* 이미지 안전장치 */
    img, picture {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
}

/* Section-12 Specific Sales Table Styles */
.section-12 .sales-table .footer-row > div:last-child {
    color: white !important;
}

/* Section-12 Footer Row - Remove red color from profit amount on both PC and Mobile */
.section-12 .footer-row .profit-count {
    color: white !important;
}

/* Mobile - Section-12 도입비/가맹비 text size adjustment */
@media (max-width: 768px) {
    .section-12 .table-row .main {
        font-size: 20px !important;
    }
}

/* Mobile First Approach - 425px 기준 */
@media (max-width: 425px) {
    
    /* Basic Container Adjustments */
    .container {
        padding: 0 16px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .content.w1280, .content.w1600 {
        max-width: 100%;
        padding: 0 10px;
        overflow-x: hidden;
    }
    
    /* Mobile Line Breaks */
    .mobile-br {
        display: block;
    }
    
    /* PC Line Breaks - Hidden on Mobile */
    .pc-br {
        display: none;
    }
    
    /* Typography Mobile Sizes */
    .font100 { font-size: 48px !important; line-height: 1.2; }
    .font80 { font-size: 36px !important; line-height: 1.2; }
    .font72 { font-size: 32px !important; line-height: 1.3; }
    .font60 { font-size: 24px !important; line-height: 1.3; }
    .font50 { font-size: 20px !important; line-height: 1.4; }
    .font40 { font-size: 18px !important; line-height: 1.4; }
    .font30 { font-size: 14px !important; line-height: 1.4; }
    
    /* Section Spacing */
    .section {
        padding: 60px 0;
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .mt120 { margin-top: 60px !important; }
    .mt100 { margin-top: 50px !important; }
    .mt80 { margin-top: 40px !important; }
    .mt64 { margin-top: 24px !important; }
    .mt48 { margin-top: 20px !important; }
    .mt32 { margin-top: 12px !important; }
    
    /* Warning and Exclamation Icons */
    .warning-ico-container,
    .exclamation-ico-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 20px auto;
    }
    
    .warning-ico {
        width: 40px;
    }
    
    .exclamation-ico {
        width: 50px;
    }
    
    /* Section-1 Mobile */
    .section-1 {
        height: 80vh;
        min-height: 600px;
        background-position: bottom;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background-image: url(../images/page01/mo/01.webp);
        background-size: contain;
    }
    
    .section-1 .content {
        text-align: center;
        padding: 20px;
    }
    
    /* Section-2 Mobile */
    .section-2-img {
        width: 100%;
        height: auto;
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Section-3 Mobile - Card Container */
    .card-container {
        width: 100%;
        padding: 30px 0;
        gap: 20px;
    }
    
    .card {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
        border-radius: 0;
        align-items: stretch;
    }
    .card-info {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
    .card-image {
        margin: 12px;
        width: 120px;
        height: 90px;
        border-radius: 6px;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .card-content {
        padding: 8px 0;
        width: 100%;
    }
    
    .card-content h3 {
        font-size: 16px !important;
        text-align: left;
        margin-bottom: 8px;
    }
    
    .info-row {
        padding: 4px 0;
    }
    
    .info-row div {
        font-size: 12px !important;
    }
    
    .highlight::before {
        height: 8px;
        bottom: 2px;
    }
    
    /* Divider 모바일 조정 */
    .divider {
        margin: 12px 0;
    }
    
    /* Stats Container Mobile */
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    
    .stats-card {
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        min-width: 280px;
    }
    
    .stats-card h3 {
        font-size: 16px !important;
        margin-bottom: 10px;
    }
    
    .stats-card p {
        font-size: 28px !important;
        min-width: 200px;
        display: inline-block;
    }
    
    /* Step Container Mobile */
    .step-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    
    .step-card {
        gap: 12px;
    }
    
    .step-card img {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin-bottom: 20px;
    }
    
    .step-label {
        font-size: 14px !important;
    }
    
    .step-card h3 {
        font-size: 18px !important;
        text-align: center;
    }
    
    /* Sales Table Mobile */
    .sales-table {
        margin-top: 30px;
        border-radius: 12px;
        max-width: 100%;
    }
    
    .table-header {
        padding: 10px 15px;
        border-radius: 12px 12px 0 0;
    }
    
    .table-header h3 {
        font-size: 20px !important;
    }
    
    .table-body {
        padding: 0 15px;
    }
    
    .table-row {
        padding: 12px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .table-row > div {
        font-size: 14px !important;
        text-align: left;
    }
    
    .table-row > div:first-child {
        flex: 2;
        text-align: left;
    }
    
    .table-row > div:nth-child(2) {
        flex: 3;
        text-align: center;
    }
    
    .table-row > div:last-child {
        flex: 1.5;
        text-align: right;
        font-weight: bold;
    }
    
    .table-header-row {
        flex-direction: row;
        margin: 0 -15px;
        padding: 10px 15px !important;
        background: #f8f8f8;
    }
    
    .table-header-row > div {
        font-size: 18px !important;
        font-weight: bold;
        color: white;
    }
    
    .table-header-row > div:first-child {
        flex: 2;
        text-align: left;
    }
    
    .table-header-row > div:nth-child(2) {
        flex: 3;
        text-align: center;
    }
    
    .table-header-row > div:last-child {
        flex: 1.5;
        text-align: right;
    }
    
    .table-footer {
        padding: 12px 15px;
        border-radius: 0 0 12px 12px;
        background: #333;
    }
    
    :not(.section-5) .footer-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-row > div {
        font-size: 20px !important;
        font-weight: bold;
        color: white;
    }
    
    .footer-row > div:first-child {
        flex: 2;
        text-align: left;
    }
    
    .footer-row > div:nth-child(2) {
        flex: 3;
        text-align: center;
    }
    
    .footer-row > div:last-child {
        flex: 1.5;
        text-align: right;
        color: #ca0606 !important;
    }
    
    /* Section-5 Table 3열 모바일 */
    .section-5 .table-row {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
        padding: 15px 0;
        gap: 0;
    }
    
    .section-5 .table-row > div {
        font-size: 14px !important;
        font-weight: 500;
        padding: 0 8px;
    }
    
    .section-5 .table-row > div:first-child {
        text-align: left;
        justify-self: start;
        padding-left: 0;
    }
    
    .section-5 .table-row > div:last-child {
        text-align: right;
        justify-self: end;
        font-weight: bold;
        padding-right: 0;
    }
    
    .section-5 .table-header-row {
        background: #f8f8f8;
        margin: 0 -15px;
        padding: 15px 15px !important;
        border-bottom: 2px solid #ddd;
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 0;
    }
    
    .section-5 .table-header-row > div {
        font-size: 16px !important;
        font-weight: bold !important;
        color: #333 !important;
        padding: 0 8px;
    }
    
    .section-5 .table-header-row > div:first-child {
        padding-left: 0;
        text-align: left;
    }
    
    .section-5 .table-header-row > div:nth-child(2) {
        text-align: right;
    }
    
    .section-5 .table-header-row > div:last-child {
        padding-right: 0;
        text-align: right;
    }
    
    .section-5 .table-footer {
        padding: 12px 15px !important;
    }
    
    .section-5 .footer-row {
        display: grid !important;
        grid-template-columns: 1fr 2fr 1fr !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .section-5 .footer-row > div {
        font-size: 16px !important;
        font-weight: bold;
        padding: 0 8px;
    }
    
    .section-5 .footer-row > div:first-child {
        text-align: left;
        justify-self: start;
        padding-left: 0;
    }
    
    .section-5 .footer-row > div:last-child {
        text-align: right;
        justify-self: end;
        color: #ca0606 !important;
        font-weight: bold;
        padding-right: 0;
    }
    
    /* Swiper Mobile */
    .swiper {
        width: 100%;
        height: auto;
        margin: 0;
        overflow: hidden;
        padding: 0;
    }
    
    .swiper-wrapper {
        display: flex;
    }
    
    .swiper-slide {
        flex-shrink: 0;
        width: 100%;
        height: auto;
    }
    
    .slide-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        max-width: 100%;
        object-fit: contain;
    }
    
    /* Section-8 Images Mobile */
    .section-8-img, .section-8-img2, .section-9-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
    }
    
    /* Mobile Review Image - 모바일에서만 표시 */
    .mobile-review-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
        display: block;
    }
    
    /* Picture Element Mobile Optimization */
    picture {
        display: block;
        width: 100%;
        margin: 0 auto;
    }
    
    picture img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    /* All Images Mobile Responsive */
    img {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    
    /* Section Specific Image Optimizations */

    
    /* Rating Badge Mobile */
    .rating-badge {
        flex-direction: row;
        border-radius: 999px;
        overflow: hidden;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .rating-label {
        padding: 12px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .rating-label span {
        font-size: 20px !important;
    }
    
    .rating-score {
        padding: 12px 20px;
        margin: 4px;
        border-radius: 999px;
        justify-content: center;
    }
    
    .rating-score span {
        font-size: 20px !important;
    }
    
    .star {
        width: 28px;
        height: 28px;
    }
    
    /* Platform Grid Mobile */
    .platform-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0;
        margin: 0 -10px;
    }
    
    .platform-card {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .platform-icon {
        width: 80px;
        height: 80px;
    }
    
    .platform-card h3 {
        font-size: 16px !important;
        margin-top: 12px;
    }
    
    /* Section-10 specific content padding for wider platform-grid */
    .section-10 .content {
        padding: 0 10px !important;
    }
    
    /* Marketing Cards Mobile */
    .marketing-cards {
        flex-direction: row;
        gap: 15px;
        padding: 0;
    }
    
    .marketing-card {
        flex: 1;
        max-width: 50%;
        border-radius: 12px;
    }
    
    .marketing-img {
        height: 150px;
    }
    
    .marketing-content {
        padding: 15px 10px;
    }
    
    .marketing-content h3 {
        font-size: 14px !important;
        line-height: 1.3;
    }
    
    /* Black Banner Mobile */
    .black-banner {
        padding: 12px 20px;
        border-radius: 25px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .black-banner p {
        font-size: 14px !important;
    }
    

    

    
    /* Q&A Mobile */
    .qa-container {
        padding: 20px 0;
        gap: 40px;
    }
    
    .question h3 {
        font-size: 18px !important;
    }
    
    .answer {
        padding: 20px;
        margin-left: 0;
        border-radius: 12px;
    }
    
    .answer p {
        font-size: 14px !important;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .form-group {
        margin-bottom: 40px;
        overflow-x: hidden;
    }
    
    .form-label {
        font-size: 18px !important;
        margin-bottom: 15px;
    }
    
    .privacy-text {
        height: 120px;
        padding: 15px;
        font-size: 12px;
        border-radius: 8px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .checkbox-label {
        font-size: 14px !important;
    }
    
    .checkbox-input {
        width: 18px;
        height: 18px;
    }
    
    .form-input {
        font-size: 16px !important;
        padding: 0 0 15px 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-input::placeholder {
        font-size: 16px !important;
    }
    
    .contact-form .btn-red {
        padding: 20px 40px;
        font-size: 18px !important;
        border-radius: 30px;
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    /* Button Mobile */
    .btn-red {
        padding: 22px 30px;
        font-size: 18px !important;
        border-radius: 999px;
        min-width: 0;
        width: 85%;
        max-width: 300px;
        margin: 0 auto;
        justify-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 56px;
        box-sizing: border-box;
        gap: 8px;
    }
    
    .btn-red::after {
        font-size: 30px;
        margin-left: 0;
    }
    
    /* Additional Mobile Text Optimizations */
    h1, h2, h3, h4, h5, h6 {
        word-break: keep-all;
        line-height: 1.3;
    }
    
    p {
        word-break: keep-all;
        line-height: 1.5;
    }
    
    /* Mobile Specific Overrides */
    .section-1 .font72 {
        word-spacing: -0.1em;
    }
    
    .section-2 .font50 {
        line-height: 1.4;
    }
    
    .section-3 .font40 {
        line-height: 1.5;
    }
    
    /* Section Text Alignment Mobile */
    .section {
        text-align: center;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .section .content {
        padding: 0px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-items: center;
    }
    
    /* Better Mobile Text Readability */
    .font72, .font80, .font100 {
        letter-spacing: -0.02em;
    }
    
    .font40, .font50 {
        letter-spacing: -0.04em;
    }
    
    /* Mobile Padding Adjustments */
    .section-1 {
        padding: 40px 0;
    }
    
    .section-11 {
        padding: 60px 0;
    }
    
    .section-14 {
        padding: 60px 0 40px 0;
    }
    
    /* Mobile Table Spacing */
    .mobile-table-spacing {
        margin-top: 30px !important;
    }
    
    /* Small Text for section-5 mobile */
    .small-text {
        font-size: 22px !important;
        font-weight: 600;
        line-height: 2;
    }
    
    /* Review Slider - 이미 정의되어 있음 */
    
    /* Fixed CTA Banner - 이미 정의되어 있음 */
    
}

/* Form Messages */
.form-message {
    padding: 12px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    animation: slideInUp 0.3s ease-out;
}

.form-message.success {
    background-color: #10b981;
    color: white;
}

.form-message.error {
    background-color: #ef4444;
    color: white;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive - 768px */
@media (max-width: 768px) and (min-width: 426px) {
    
    .container {
        padding: 0 30px;
    }
    
    /* Typography Tablet Sizes */
    .font100 { font-size: 60px !important; }
    .font80 { font-size: 48px !important; }
    .font72 { font-size: 42px !important; }
    .font60 { font-size: 32px !important; }
    .font50 { font-size: 26px !important; }
    .font40 { font-size: 20px !important; }
    
    /* Card Container Tablet */
    .card-container {
        gap: 25px;
    }
    
    .card {
        flex-direction: row;
        gap: 30px;
    }
    
    .card-image {
        width: 200px;
        height: 150px;
        margin: 20px;
    }
    
    /* Stats Container Tablet */
    .stats-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stats-card {
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        min-width: 300px;
    }
    
    .stats-card h3 {
        font-size: 18px !important;
        margin-bottom: 12px;
    }
    
    .stats-card p {
        font-size: 32px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 250px;
        display: inline-block;
    }
    
    /* Step Container Tablet */
    .step-container {
        flex-direction: row;
        gap: 20px;
    }
    
    .step-card img {
        max-width: 150px;
    }
    
    /* Platform Grid Tablet */
    .platform-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .platform-icon {
        width: 100px;
        height: 100px;
    }
    
    /* Marketing Cards Tablet */
    .marketing-cards {
        flex-direction: row;
        gap: 12px;
    }
    
}

/* ======================== 
   SMALL LAPTOP RESPONSIVE - 900px 화면 최적화
   ======================== */

@media (max-width: 900px) and (min-width: 769px) {
    /* Stats Container for Small Laptops */
    .stats-container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 25px;
    }
    
    .stats-card {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 200px;
        padding: 20px 10px;
        text-align: center;
    }
    
    .stats-card h3 {
        font-size: 16px !important;
        margin-bottom: 10px;
    }
    
    .stats-card p {
        font-size: 24px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* ======================== 
   MEDIUM DESKTOP RESPONSIVE - 1000px 화면 최적화
   ======================== */

@media (max-width: 1200px) and (min-width: 901px) {
    
    /* Basic Container Adjustments */
    .container {
        padding: 0 40px;
        max-width: 100%;
    }
    
    .content.w1280, .content.w1600 {
        max-width: 95%;
        padding: 0 20px;
    }
    
    /* Icons Sizing */
    .warning-ico-container,
    .exclamation-ico-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 30px auto;
    }
    
    .warning-ico {
        width: 70px;
    }
    
    .exclamation-ico {
        width: 90px;
    }
    
    /* Section Spacing */
    .section {
        padding: 100px 0;
    }
    
    /* Section-1 Medium Desktop */
    .section-1 {
        height: 90vh;
        min-height: 700px;
    }
    
    .section-1 .content {
        padding: 30px;
    }
    
    /* Section-2 Medium Desktop */
    .section-2-img {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Card Container Medium Desktop */
    .card-container {
        padding: 60px 20px;
        gap: 40px;
    }
    
    .card {
        flex-direction: row;
        gap: 40px;
        padding: 30px;
        border-radius: 15px;
    }
    
    .card-image {
        width: 250px;
        height: 200px;
        margin: 20px;
        border-radius: 10px;
    }
    
    .card-content {
        padding: 20px 10px;
    }
    
    .card-content h3 {
        font-size: 28px !important;
    }
    
    .info-row div {
        font-size: 20px !important;
    }
    
    .highlight::before {
        height: 15px;
        bottom: 6px;
    }
    
    /* Stats Container Medium Desktop */
    .stats-container {
        padding: 40px;
        gap: 30px;
        border-radius: 25px;
        flex-wrap: nowrap;
    }
    
    .stats-card {
        padding: 30px;
        flex: 1;
        min-width: 0;
    }
    
    .stats-card h3 {
        font-size: 20px !important;
        margin-bottom: 15px;
    }
    
    .stats-card p {
        font-size: 36px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Step Container Medium Desktop */
    .step-container {
        gap: 40px;
        padding: 0 30px;
    }
    
    .step-card img {
        max-width: 250px;
        margin-bottom: 30px;
    }
    
    .step-label {
        font-size: 20px !important;
    }
    
    .step-card h3 {
        font-size: 22px !important;
    }
    
    /* Sales Table Medium Desktop */
    .sales-table {
        margin-top: 50px;
        border-radius: 25px;
        max-width: 1000px;
    }
    
    .table-header {
        padding: 20px 40px;
        border-radius: 25px 25px 0 0;
    }
    
    .table-header h3 {
        font-size: 24px !important;
    }
    
    .table-body {
        padding: 0 40px;
    }
    
    .table-row {
        padding: 25px 0;
    }
    
    .table-row > div {
        font-size: 20px !important;
    }
    
    .table-header-row > div {
        font-size: 22px !important;
    }
    
    .table-footer {
        padding: 30px 40px;
        border-radius: 0 0 25px 25px;
    }
    
    .footer-row > div {
        font-size: 24px !important;
    }
    
    /* Section-5 Table 3열 Medium Desktop */
    .section-5 .table-row > div {
        font-size: 20px !important;
    }
    
    .section-5 .footer-row > div {
        font-size: 24px !important;
    }
    
    /* Swiper Medium Desktop */
    .swiper {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .slide-img {
        border-radius: 12px;
    }
    
    /* Images Medium Desktop */
    .section-8-img, .section-8-img2, .section-9-img {
        max-width: 600px;
        border-radius: 12px;
        margin: 0 auto;
    }
    
    /* Rating Badge Medium Desktop */
    .rating-badge {
        border-radius: 999px;
        max-width: 300px;
    }
    
    .rating-label {
        padding: 18px 30px;
    }
    
    .rating-label span {
        font-size: 22px !important;
    }
    
    .rating-score {
        padding: 18px 30px;
        margin: 6px;
    }
    
    .rating-score span {
        font-size: 28px !important;
    }
    
    .star {
        width: 28px;
        height: 28px;
    }
    
    /* Platform Grid Medium Desktop */
    .platform-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        max-width: 70%;
        margin: 0 auto;
    }
    
    .platform-card {
        padding: 50px 40px;
        border-radius: 20px;
    }
    
    .platform-icon {
        width: 120px;
        height: 120px;
    }
    
    .platform-card h3 {
        font-size: 20px !important;
    }
    
    /* Marketing Cards Medium Desktop */
    .marketing-cards {
        gap: 25px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .marketing-card {
        border-radius: 20px;
    }
    
    .marketing-img {
        height: 250px;
    }
    
    .marketing-content {
        padding: 30px;
    }
    
    .marketing-content h3 {
        font-size: 20px !important;
    }
    
    /* Black Banner Medium Desktop */
    .black-banner {
        padding: 18px 30px;
        border-radius: 30px;
        max-width: 80%;
    }
    
    .black-banner p {
        font-size: 18px !important;
    }
    
    /* Highlight Banner Medium Desktop */
    .highlight-banner h3 {
        font-size: 35px !important;
    }
    
    /* Q&A Medium Desktop */
    .qa-container {
        padding: 40px 30px 0 30px;
        gap: 60px;
    }
    
    .question h3 {
        font-size: 24px !important;
    }
    
    .answer {
        padding: 30px 40px;
        margin-left: 20px;
        border-radius: 15px;
    }
    
    .answer p {
        font-size: 18px !important;
    }
    
    /* Contact Form Medium Desktop */
    .contact-form {
        max-width: 900px;
        padding: 0 30px;
    }
    
    .form-group {
        margin-bottom: 60px;
    }
    
    .form-label {
        font-size: 22px !important;
        margin-bottom: 20px;
    }
    
    .privacy-text {
        height: 150px;
        padding: 20px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .checkbox-label {
        font-size: 18px !important;
    }
    
    .checkbox-input {
        width: 20px;
        height: 20px;
    }
    
    .form-input {
        font-size: 18px !important;
        padding: 0 0 18px 0;
    }
    
    .form-input::placeholder {
        font-size: 18px !important;
    }
    
    .contact-form .btn-red {
        padding: 25px 60px;
        font-size: 22px !important;
        border-radius:999px;
        margin-top: 50px;
    }
    
    /* Button Medium Desktop */
    .btn-red {
        padding: 20px 50px;
        font-size: 20px !important;
        border-radius: 999px;
        min-width: 200px;
        max-width: 90%;
    }
    
    .btn-red::after {
        font-size: 28px;
    }
    
    /* Review Slider Medium Desktop */
    .review-slider {
        max-width: 1000px;
        margin: 0 auto;
        padding: 50px 20px;
    }
    
    .review-slide.active {
        max-width: 300px;
    }
    
    .review-img {
        border-radius: 12px;
    }
    
    /* Mobile Table Spacing Override */
    .mobile-table-spacing {
        margin-top: -80px !important;
    }
    
}

/* Tablet CTA */



/* Step Container - AOS로 대체되어 기존 애니메이션 제거 */
.step-card {
    /* opacity와 transform은 AOS가 처리 */
}

/* Section 8 Slider Styles */
.section-8-slider {
    position: relative;
    max-width: 50%;
    margin: 60px auto 0;
    overflow: hidden;
}

.section-8-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-8-slider .section-8-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile - Full width */
@media (max-width: 768px) {
    .section-8-slider {
        max-width: 100%;
        margin: 30px auto 0;
    }
}

.section-8-slider .swiper-button-next,
.section-8-slider .swiper-button-prev {
    color: #ca0606;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-8-slider .swiper-button-next:after,
.section-8-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .section-8-slider .swiper-button-next,
    .section-8-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .section-8-slider .swiper-button-next:after,
    .section-8-slider .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Section 2 Slider Styles */
.section-2-slider {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.section-2-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.section-2-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-2-slider .section-2-img {
    width: 100%;
    height: auto;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.section-2-slider .swiper-button-next,
.section-2-slider .swiper-button-prev {
    color: #ca0606;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-2-slider .swiper-button-next:after,
.section-2-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Mobile Styles for Section 2 Slider */
@media (max-width: 768px) {
    .section-2-slider .swiper-button-next,
    .section-2-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .section-2-slider .swiper-button-next:after,
    .section-2-slider .swiper-button-prev:after {
        font-size: 16px;
    }
}