* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

/* 헤더 스타일 */
.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section__title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.header-section__text {
    font-size: 16px;
    color: #666;
}


/* 컨텐츠 전체 영역 */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1280px; /* 가로 최대 1280px로 고정 */
    margin: 0 auto;
    border-radius: 10px;
    padding: 40px;
}

@media (max-width: 640px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 20px 8px;
    }
    .content-right {
        order: -1;
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    .content-left {
        width: 100%;
    }
    .feature-list {
        width: 100%;
    }
}


/* 왼쪽 섹션 */
.content-left {
    flex: 1;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.feature-description {
    font-size: 14px;
    color: #666;
}

/* 오른쪽 섹션 */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
}
.top-bar {
    background: #f4f4f4;
    font-size: 14px;
    padding: 10px 0;
}
.top-bar .container-inner {
    display: flex;
    justify-content: flex-end;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.top-bar a {
    margin-left: 15px;
    text-decoration: none;
    color: #333;
}
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.nav-menu {
    display: flex;
    gap: 20px;
}
.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}
.content-text {
    flex: 1;
    padding-right: 40px;
}
.content-image {
    flex: 1;
}
.content-image img {
    width: 100%;
    border-radius: 8px;
}
.buttons {
    margin-top: 20px;
}
.buttons button {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-primary {
    background: black;
    color: white;
}
.btn-secondary {
    background: white;
    border: 1px solid black;
    color: black;
}
.info-box {
    background: #d9a97b;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 8px;
}
.footer {
    background: #222;
    color: #fff;
    padding: 40px 20px;
}
.footer-container {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1;
    padding: 10px;
    min-width: 280px;
}
.footer-section h2, .footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}
.customer-number {
    font-size: 24px;
    font-weight: bold;
}
.footer-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #444;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
}
.footer-btn:hover {
    background: #555;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons img {
    width: 24px;
    height: 24px;
}

.banner-slider {
    width: 100%;
    overflow: hidden;
}
.banner-slider div {
    width: 100vw;
}
.banner-slider img {
    width: 100vw;
    height: auto;
    object-fit: cover;
}
.slick-prev, .slick-next {
    z-index: 100;
}



/* 배너 스타일 */
.builder-blocks {
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:110px;
    background-color: aliceblue;
}

.banner {
    margin-top: 20px;
}

.banner a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
}

.banner img {
    width: 48px;
    height: 48px;
}

.banner-text {
    font-size: 14px;
    font-weight: bold;
}

/* 헤더 섹션 */
/* 헤더 스타일 */
.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section__title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.header-section__text {
    font-size: 16px;
    color: #666;
}

.header-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.header-section p {
    font-size: 18px;
    color: #666;
}

/* 기능 섹션 */
.builder-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: white;
    
}

.feature {
    width: 280px;
    height: 254px;
    padding: 20px;
    background: #f6f7f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature img {
    width: 100px;
    height: 100px;
}

.feature h3 {
    margin-top: 20px;
    font-size: 20px;
}

.feature p {
    margin-top:20px;
    font-size: 16px;
    color: #666;
}

/* CTA 버튼 */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4b5c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

/* 통계 섹션 */
.builder-metrics {
    background: #e8ecef;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.metric {
    text-align: center;
}

.metric h3 {
    font-size: 28px;
    color: #ff4b5c;
}

.metric p {
    font-size: 16px;
    color: #666;
}

/* 고객 사례 섹션 */
.builder-case-study {
    padding: 50px 20px;
    background: white;
}

.case-item {
    display: inline-block;
    width: 300px;
    margin: 10px;
}

.case-item img {
    width: 100%;
    border-radius: 10px;
}

/* 최종 CTA 섹션 */
.builder-final-cta {
    background: #ff4b5c;
    color: white;
    padding: 50px 20px;
}

.builder-final-cta h2 {
    font-size: 28px;
}

.builder-final-cta p {
    font-size: 18px;
}

.builder-final-cta .btn {
    background: white;
    color: #ff4b5c;
    font-weight: bold;
}

/* 기본 스타일 */
.cds-header-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #f6f7f9;
}

.cds-header-section2 {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #f6f7f9;
}


.cds-header-section__inner {
    max-width: 800px;
    width: 100%;
}

/* 서브헤더 스타일 */
.cds-header-section__sub-header {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
}

/* 메인 헤더 스타일 */
.cds-header-section__header {
    font-size: 36px;
    font-weight: bold;
    color: #0c111d;
    margin-bottom: 20px;
}

/* 버튼 컨테이너 */
.cds-header-section__buttons {
    margin-top: 20px;
}

/* 버튼 스타일 */
.cds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
/* 버튼 색상 및 효과 */
.cds-btn--xl {
    font-size: 18px;
    padding: 14px 28px;
}

.cds-btn--secondary-gray {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #d0d5dd;
}

.cds-btn--secondary-gray:hover {
    background-color: #d0d5dd;
}

/* 기본 다크 테마 스타일 */
.metrics--dark {
    color: #FFFFFF; /* 글씨 색상을 흰색으로 변경 */
    text-align: center;
    padding: 60px 20px;
    background-color: var(--secondary-gray-blue-700, #1D2746); /* 배경색 유지 */
    border-radius: 12px;
    max-width: 1280px; /* 가로 사이즈 1280px로 고정 */
    margin: 50px auto; /* 가운데 정렬 */
}

.metrics--dark .metrics__content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
}

/* 개별 항목 스타일 */
.metrics__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    flex: 1;
}

/* 숫자 강조 */
.metrics__num {
    font-size: 48px; /* 글씨 크기 키움 */
    font-weight: bold;
    color: #FFFFFF; /* 흰색 */
}

/* 설명 텍스트 */
.metrics__num-desc {
    font-size: 18px;
    color: #FFFFFF; /* 흰색 */
    margin-top: 5px;
}

.cds-header-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
}

.cds-header-section--center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cds-header-section__inner {
    max-width: 960px;
    margin: 0 auto;
}

/* 텍스트 스타일 */
.cds-header-section__sub-header {
    font-size: 18px;
    color: #999;
    margin-bottom: 10px;
}

.cds-header-section__header {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* 버튼 영역 */
.cds-header-section__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* 버튼 스타일 공통 */
.cds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 버튼 사이즈 */
.cds-btn--xl {
    font-size: 18px;
    padding: 18px 36px;
}

/* 버튼 색상 - 회색 */
.cds-btn--secondary-gray {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.cds-btn--secondary-gray:hover {
    background-color: #e4e4e4;
}

/* 버튼 색상 - 빨간색 */
.cds-btn--primary-red {
    background-color: #e50012;
    color: #fff;
    border: 1px solid transparent;
}

.cds-btn--primary-red:hover {
    background-color: #cc0010;
}

.image-thumbnail-section {
    padding: 60px 20px;
    background-color: #fff;
}

.image-thumbnail-section__content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.cds-quote-img-panel {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 280px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.cds-quote-img-panel:hover {
    transform: translateY(-4px);
}

.cds-quote-img-panel__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.cds-quote-img-panel__cover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7));
    padding: 16px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.cds-quote-img-panel__title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: 4px 0 2px;
}

.cds-quote-img-panel__sub-title {
    font-size: 12px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cds-header-section__header {
        font-size: 24px;
    }

    .cds-btn--xl {
        width: 100%;
        font-size: 16px;
        padding: 14px 20px;
    }

    .cds-header-section__buttons {
        flex-direction: column;
        gap: 10px;
    }

    .metrics--dark {
        padding: 40px 16px;
    }

    .metrics--dark .metrics__content {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .metrics__num {
        font-size: 32px;
    }

    .metrics__num-desc {
        font-size: 14px;
    }

    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }
    .nav-menu a {
        padding: 10px;
        display: block;
        text-align: center;
    }
    .nav-menu.active {
        display: flex;
    }
    .main-content {
        flex-direction: column;
        text-align: center;
    }
    .content-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section {
        padding: 20px 0;
    }
    .social-icons {
        justify-content: center;
    }
    .builder-blocks .banner {
        flex-direction: column;
        text-align: center;
    }

    .builder-blocks .banner img {
        width: 30px;
        height: 30px;
        margin: 0 auto 5px;
    }

    .builder-blocks .banner-text {
        font-size: 14px;
    }

    .builder-features img {
        width: 50px;
        height: 50px;
    }

    .builder-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .btn {
        font-size: 14px;
        padding: 12px;
    }   

    .cds-header-section {
        padding: 30px 12px;
    }
    
    .cds-header-section__header {
        font-size: 24px;
        line-height: 1.4;
    }

    .cds-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .header-section__title {
        font-size: 20px;
    }

    .header-section__text {
        font-size: 14px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon img {
        width: 35px;
        height: 35px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }
}
