﻿/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pretendard-Medium";
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    font-size: 16px;
    /* 기준 폰트 사이즈 */
    /* 가로 스크롤 방지 */

}

a {
    text-decoration: none;
}

/* 웹폰트 설정 */
@font-face {
    font-family: "Pretendard-Medium";
    src: url('../../css/font/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard-Bold";
    src: url('../../css/font/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}


/*손하지 css 수정 */
.logic_sec {
    background-color: #e2cead;
    color: #332020;
}

.logic_container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.logic_header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

.logic_header h1 {
    font-size: 2.7em;
    color: #d84802;
    font-weight: 900;
    margin: 20px 0;
}

.logic_header h2 {
    font-size: 2.3rem;
    color: #000;
    font-weight: 600;
}

.logic_content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.logic_section {
    flex: 1 1 calc(50% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section_header {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 0 0 25px 25px;
    bottom: 20px;
}

.section_header strong {
    color: #fdda58;
}

.logic_img {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #d84802;
    display: inline-block;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.step {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #1276cb;
    display: inline-block;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.logic_img::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid #d84802;
}

.step::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid #1276cb;
}

.logic_section h2 {
    font-size: 1.5rem;
    color: #464648;
    margin-bottom: 10px;
    font-weight: 700;
}

.logic_section p {
    font-size: 0.875rem;
    margin-bottom: 20px;
}

/* 특정 이미지에 대한 스타일 */
.special-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: auto; /* 중앙 정렬을 위해 margin을 auto로 설정 */
}

.logic_levels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logic_level {
    background-color: #edfaff;
    padding: 10px;
    border-radius: 5px;
    border-left: 5px solid #1278cd;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logic_level strong {
    color: #1277cf;
}

.logic_level h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1278cd;
    margin-bottom: 5px;
    padding-left: 5px;
}

.logic_level p {
    font-size: 1.1rem;
    font-weight: 600;
    padding-left: 5px;
    color: #464648;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .section_header {
        bottom: 15px;
    }

    .logic_header h1 {
        font-size: 2.2em;
    }

    .logic_header h2 {
        font-size: 1.8rem;
    }

    .logic_section {
        padding: 15px;
    }

    .logic_section h2 {
        font-size: 1.3rem;
    }

    .logic_section p {
        font-size: 0.8rem;
    }

    .logic_level h4 {
        font-size: 1rem;
    }

    .logic_level p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .section_header {
        bottom: 10px;
    }

    .logic_content {
        flex-direction: column;
    }

    .logic_section {
        flex: 1 1 100%;
        padding: 10px 15px 15px 15px;
    }

    .logic_header h1 {
        font-size: 2rem;
    }

    .logic_header h2 {
        font-size: 1.6rem;
    }

    .logic_section h2 {
        font-size: 1.2rem;
    }

    .logic_section p {
        font-size: 0.75rem;
    }

    .logic_level h4 {
        font-size: 0.9rem;
    }

    .logic_level p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section_header {
        bottom: 5px;
    }

    .logic_header {
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .logic_header h1 {
        font-size: 1.6rem;
    }

    .logic_header h2 {
        font-size: 1.2rem;
    }

    .logic_section {
        padding: 5px 10px 10px 10px;
    }

    .logic_section h2 {
        font-size: 1rem;
    }

    .logic_section p {
        font-size: 0.7rem;
    }

    .logic_level h4 {
        font-size: 0.8rem;
    }

    .logic_level p {
        font-size: 0.75rem;
    }
    .logic_img {
    font-size: 1rem;

}
    .step {
    font-size: 1rem;

}

}



/*--------------------------------*/
.check_section {
    background-color: #f0f0f0;
}

.check_inner_section {
    width: 80%;
    margin: auto;
    padding: 2%;
    border-radius: 10px;
    max-width: 1200px;
}

.check_header {
    text-align: center;
    margin-bottom: 2%;
    margin-top: 8%;
}

.check_main_title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
    margin: 0 0 2% 0;
}

.check_subtitle {
    font-size: 2.5em;
    color: black;
    margin: 0;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .check_subtitle strong {
        color: #E40000;
        font-size: 2.5rem;
        margin-left: 1%;
        font-weight: 900;
    }

    .check_subtitle::before,
    .check_subtitle::after {
        content: '';
        flex: 1;
        border-bottom: 2px solid #ccc;
        margin: 0 1%;
        border-radius: 25px;
    }

.check_description {
    font-size: 1em;
    color: #666;
    margin-top: 1.5%;
}

.check {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1%;
}

.check_left {
    background-color: #E40000;
    padding: 2%;
    width: 20%;
    justify-content: center; /* Center horizontally */
    align-items: center;
    text-align: center;
    margin: 1%;
    display: flex;
    border-radius: 25px;
    flex-direction: column;
    box-shadow: 0 0.5px 5px rgba(0, 0, 0, 0.3);
}

.check_icon {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 1%;
    color: rgba(255, 236, 78, 1);
}

.check_icon_description {
    font-size: 1.2em;
    margin: 0 auto;
    font-weight: 800;
    color: white;
}

.check_right {
    flex: 1;
    padding: 2%;
    background: #ffffff;
    margin: 1%; /* Add some margin to give space around the .check_right */
    box-shadow: 0 0.5px 5px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
}

.check_details {
    display: flex;
    background: #e8e8e8;
    padding: 1%;
    justify-content: space-around;
    border-radius: 25px;
    height: 80%;
    align-items: center;
}

.check_detail_item {
    font-size: 1.2em;
    color: #333;
    text-align: center;
    font-weight: 600;
}

    .check_detail_item strong {
        color: #E40000;
        font-size: 1.4rem;
    }

    .check_detail_item.bottom_text {
        padding: 1%;
        text-align: center;
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        margin: 1% 1% 2% 0;
        position: relative;
    }

        .check_detail_item.bottom_text > p {
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
            font-weight: bold;
        }

            .check_detail_item.bottom_text > p::before {
                content: '';
                position: absolute;
                width: 100%;
                height: 50%;
                bottom: 0;
                left: 0;
                background-color: rgba(255, 236, 78, 0.59);
                z-index: -1;
                border-radius: 25px;
            }

.bottom_text {
    font-weight: bold;
    color: #000;
}

.check_item_bottom {
    text-align: center;
    margin-top: 2%;
    margin-bottom: 5%;
    font-size: 0.8em;
    color: #999;
}

.check_item_text {
    font-size: 0.8em;
    color: #999;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .check_main_title {
        font-size: 1.8rem;
    }

    .check_subtitle {
        font-size: 2rem;
    }

        .check_subtitle strong {
            font-size: 2rem;
        }

    .check_description {
        font-size: 0.9rem;
    }

    .check_detail_item {
        font-size: 1rem;
    }

        .check_detail_item strong {
            font-size: 1.2rem;
        }

        .check_detail_item.bottom_text > p {
            font-size: 1rem;
        }
}

@media (max-width: 992px) {
    .check_header {
    text-align: center;
    margin-bottom: 5%;
    margin-top: 10%;
}

    .check_main_title {
        font-size: 1.5rem;
    }

    .check_subtitle {
        font-size: 1.8rem;
    }

        .check_subtitle strong {
            font-size: 1.8rem;
        }
    .check_icon_description{
            font-size: 0.8rem;
        }
    .check_description {
        font-size: 0.8rem;
    }

    .check_detail_item >p {
        font-size: 0.6rem;
    }

        .check_detail_item strong {
            font-size: 0.8rem;
        }

        .check_detail_item.bottom_text > p {
            font-size: 0.8rem;
        }
}

@media (max-width: 768px) {
    .check {
        flex-direction: column;
    }
        .check_header {
    text-align: center;
       margin-bottom: 10%;
    margin-top: 16%;
}
    .check_left,
    .check_right {
        width: 100%;
        margin: 1% 0;
    }

    .check_main_title {
        font-size: 1.3rem;
    }

    .check_subtitle {
        font-size: 1.6rem;
    }

        .check_subtitle strong {
            font-size: 1.6rem;
        }

    .check_description {
        font-size: 0.7rem;
    }

    .check_detail_item {
        font-size: 0.8rem;
    }

        .check_detail_item strong {
            font-size: 1rem;
        }

        .check_detail_item.bottom_text > p {
            font-size: 1rem;
        }

    .check_item_text {
        font-size: 0.5rem;
    }
}

@media (max-width: 576px) {
    .check_main_title {
        font-size: 1.2rem;
    }
           .check_header {
    text-align: center;
    margin-bottom: 10%;
    margin-top: 25%;
}

    .check_subtitle {
        font-size: 1.1rem;
        flex-direction:column;
        line-height : 1.2;
    }

    .check_icon_description {
        font-size: 0.8rem;
    }

    .check_subtitle strong {
        font-size: 1.6rem;
    }

    .check_right {
        margin: 10px 0 10px 0;
    }

    .check_icon {
        font-size: 0.8em;
    }

    .check_description {
        font-size: 0.5rem;
    }

    .check_details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .check_detail_item > p {
        font-size: 0.7rem;
        font-weight: 500;
    }

    .check_detail_item strong {
        font-size: 0.7rem;
    }

    .check_detail_item.bottom_text > p {
        font-size: 0.7rem;
    }

    .check_left {
        width: 100%;
    }

    .check_item_bottom .check_item_text {
        font-size: 0.4rem;
    }
}


/*------------------------------------*/
.prof {
    background-color: #fde585;
}

.prof_container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 2%;
}

.prof_header {
    text-align: center;
    padding: 2%;
    border-radius: 10px;
    margin-bottom: 2%;
    margin-top: 5%;
}

    .prof_header h1 {
        font-size: 2.5rem;
        color: black;
        margin: 0;
        font-weight: 900;
        line-height: 1.2;
    }

    .prof_header p {
        font-size: 1.2em;
        color: #333;
        margin-top: 2%;
    }

    .prof_header strong {
        color: #0170c0;
        font-weight: 900;
    }

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 5%;
}

.prof_inner {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 45%;
    padding: 2%;
    text-align: center;
    margin-bottom: 2%;
}

.prof_inner_header {
    background: #0170c0;
    padding: 1%;
    border-radius: 10px 10px 0 0;
    color: white;
}

.two {
    background: #01873e;
    padding: 1%;
    border-radius: 10px 10px 0 0;
    color: white;
}

.prof_inner_header > h2 {
    font-size: 1.2em;
    margin: 0;
    color: white;
}

.prof_inner_header p {
    font-size: 1em;
    margin: 1% 0 0;
    color: #c8c8c8;
}

.prof_body {
    padding: 2%;
}

    .prof_body img {
        border-radius: 50%;
        margin-bottom: 1%;
        max-width: 100%;
        height: auto;
    }

    .prof_body p {
        font-size: 1em;
        color: #333;
        margin-top: 1%;
    }

.body_one strong {
    font-size: 1.5em;
    color: #0170c0;
}

.body_two strong {
    font-size: 1.5em;
    color: #01873e;
}

.prof_body_inner {
    text-align: left;
    background-color: #d7d7d7; /* 배경색 변경 */
    padding: 3%; /* 패딩 추가 */
    border-radius: 10px;
    color: #303030;
    margin-left: 2%;
}

.prof_bottom {
    text-align: center;
    padding: 1% 2%;
}

    .prof_bottom h1 {
        font-size: 2em;
        color: #333;
        margin-bottom: 2%;
        line-height: 1.5;
        font-weight: 900;
    }

        .prof_bottom h1 strong {
            color: #E40000;
            font-weight: 900;
        }

.cta-button {
    background-color: #E40000;
    color: white;
    width: 200px; /* 버튼 너비를 고정된 픽셀 값으로 설정 */
    padding: 10px 20px; /* 상하 좌우 패딩 설정 */
    border: none;
    border-radius: 25px;
    font-size: 1rem; /* 글꼴 크기 조정 */
    font-weight: 900;
    cursor: pointer;
    margin: 0 auto 2% auto; /* 버튼 가운데 정렬 */
    display: block; /* 버튼을 블록 요소로 설정하여 가운데 정렬 */
    text-align: center; /* 텍스트 가운데 정렬 */
}

    .cta-button:hover {
        background-color: #b01717;
    }

.prof_bottom_txt > p {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.5;
}

/* 반응형 디자인을 위한 미디어 쿼리 */
@media (max-width: 1200px) {
    .prof_header h1 {
        font-size: 2rem;
    }

    .prof_inner {
        width: 48%;
    }

    .prof_bottom h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 992px) {
    .prof_header h1 {
        font-size: 1.8rem;
    }

    .prof_inner {
        width: 100%;
        margin-bottom: 2%;
    }

    .prof_body_inner {
        padding: 2%; /* 패딩 조정 */
    }

    .prof_bottom h1 {
        font-size: 1.6rem;
    }

    .cta-button {
        width: 100%;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .prof_header h1 {
        font-size: 1.5rem;
    }

    .prof_header p {
        font-size: 1rem;
    }

    .prof_inner {
        width: 100%;
    }

    .prof_body_inner {
        padding: 2%; /* 패딩 조정 */
    }

    .prof_bottom h1 {
        font-size: 1.4rem;
    }

    .cta-button {
        width: 100%;
        max-width: 160px;
    }

    .prof_bottom_txt > p {
        font-size: 0.7rem;
    }

    .prof_body img {
        max-width: 50%;
        height: auto;
        max-height: 100vh;
    }
}

@media (max-width: 576px) {
    .prof_header h1 {
        font-size: 1.4em;
        padding-top: 2%;
    }

    .prof_header p {
        font-size: 0.8rem;
        padding-top: 1%;
    }

    .prof_inner_header > h2 {
        font-size: 0.8rem;
    }
    
    .prof_body_inner {
        padding: 2%; /* 패딩 조정 */
    }

    .prof_body p {
        font-size: 0.6rem;
    }

    .prof_bottom h1 {
        font-size: 1.1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 140px;
    }

    .prof_bottom_txt > p {
        font-size: 0.6rem;
    }
}


/*----------------------------------*/
.evaluation {
    background-color: #2ebf69;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.evaluation-center {
    max-width: 1200px;
    text-align: center;
    padding: 20px;
    background-color: #2ebf69;
    border-radius: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
}

    .evaluation-center h1 {
        font-size: 1.5em;
        color: rgba(255, 255, 255, 0.76);
        margin-bottom: 10px;
    }


    .evaluation-center h2 {
        font-size: 2.5em;
        font-weight: 900;
        color: #feea45;
        margin-bottom: 20px;
    }

    .evaluation-center strong {
        color: white;
    }

.evaluation-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

    .evaluation-button-container::before,
    .evaluation-button-container::after {
        content: '';
        flex: 1;
        border-bottom: 2px dashed #007d32;
        margin: 0 10px;
    }

.evaluation-button {
    background-color: #007d32;
    color: white;
    padding: 10px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 1;
}

.evaluation-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.evaluation-card {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 300px;
    padding: 20px;
    text-align: center;
    display: flex; /* Use Flexbox */
    flex-direction: column; /* Arrange children in a column */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
}

.card_one {
    background-color: #eefff5;
}

.card_two {
    background-color: #fffcec;
}

.card_three {
    background-color: #eaf8ff;
}

.card_four {
    background-color: #e3f8f3;
}

.card_five {
    background-color: #fff7ee;
}

.card_six {
    background-color: #fff7ee;
}


.evaluation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.evaluation-card p {
    font-size: 1rem;
    color: #797979;
    margin-bottom: 10px;
    font-weight: 500;
}

.evaluation_card_img {
    max-width: 60%; /* 이미지의 최대 너비를 80%로 설정 */
    max-height: 150px; /* 이미지의 최대 높이를 150px로 설정 */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.process_img video {
    max-width: 1000px;
    border-radius: 25px;
}

.process_button {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

    .process_button .process_button_txt {
        background-color: #005628;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 30px;
        font-size: 1rem;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px; /* 텍스트와 아이콘 사이에 간격 추가 */
    }

        .process_button .process_button_txt:hover {
            background-color: #00421e;
        }
/* 반응형 디자인 */
/* 반응형 디자인 */
@media (max-width: 1024px) {
    .evaluation-center h1 {
        font-size: 1.2em;
    }

    .evaluation-center h2 {
        font-size: 2rem;
    }

    .evaluation-button {
        padding: 8px 30px;
        font-size: 1.2rem;
    }

    .evaluation-card {
        width: 250px;
        height: 250px;
    }

        .evaluation-card h3 {
            font-size: 1rem;
        }

        .evaluation-card p {
            font-size: 0.6rem;
        }

        .evaluation_card_img {
            max-width: 50%;
            max-height: 120px;
        }

    .process_img video {
        max-width: 800px;
    }

    .process_button .process_button_txt {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .evaluation-center {
        padding: 15px;
    }

        .evaluation-center h1 {
            font-size: 1em;
        }

        .evaluation-center h2 {
            font-size: 1.5rem;
        }

    .evaluation-button {
        padding: 6px 20px;
        font-size: 1rem;
    }

    .evaluation-grid {
        flex-direction: column;
        gap: 15px;
        align-items: center; /* 가운데 정렬을 위한 추가 */
    }

    .evaluation-card {
        width: 90%;
        height: auto;
        padding: 15px;
    }

        .evaluation-card h3 {
            font-size: 1.2rem;
        }

        .evaluation-card p {
            font-size: 0.8rem;
        }

        .evaluation_card_img {
            max-width: 19%;
            max-height: 100px;
        }

    .process_img video {
        max-width: 100%;
    }

    .process_button .process_button_txt {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .evaluation-center h1 {
        font-size: 0.8em;
    }

    .evaluation-center h2 {
        font-size: 1.6em;
    }

    .evaluation-button {
        padding: 4px 15px;
        font-size: 0.8rem;
    }

    .evaluation-card {
        padding: 10px;
    }

        .evaluation-card h3 {
            font-size: 1rem;
        }

        .evaluation-card p {
            font-size: 0.7rem;
        }

        .evaluation_card_img {
            max-width: 30%;
            max-height: 80px;
        }

    .process_button .process_button_txt {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .process_img, .evaluation-button-container {
        display: none; /* 480px 이하에서 숨김 */
    }
}

/*-------------------------------*/
.feature_section {
    background-color: #f7922e;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.feature_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f7922e;
    margin-top: 25px;
}

.feature_header {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

    .feature_header strong {
        color: white;
    }

.feature_sub_header {
    font-size: 2rem;
    color: white;
    font-weight: 900;
    margin-top: 20px;
    margin-bottom: 20px;
}

.feature_header_description {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1px;
}

.feature {
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .feature img {
        max-width: 50px;
        margin-bottom: 10px;
        max-height: 50px;
    }

.feature-title {
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.feature-description {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    color: #a0a0a0;
}

.cta {
    background-color: #392d21;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .cta:hover {
        background-color: #333;
        transform: scale(1.05);
    }

.cta_strong {
    color: #4afea8;
}

.cta_inner {
    padding: 5px 10px;
    background-color: white;
    color: #392d21;
    border-radius: 25px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    font-size: 1.1rem;
}

    .cta_inner .material-icons {
        margin-left: 5px;
    }

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .feature_header {
        font-size: 1.7rem;
    }

    .feature_sub_header {
        font-size: 1.7rem;
    }
    .feature_header_description{
        font-size : 0.8rem;
    }
    .feature_container {
        padding: 30px;
    }
    .features{
          gap: 1px;
  
    }
    .feature {
        width: 160px;
        height: 160px;
       
    }

    .feature-title {
        font-size: 0.7rem;
    }

    .feature-description {
        font-size: 0.5rem;
    }

    .cta {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .cta_inner {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}

@media (max-width: 768px) {
    .feature_header {
        font-size: 1.5rem;
    }

    .feature_sub_header {
        font-size: 1.5rem;
    }

    .feature_container {
        padding: 20px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 600px;
        height: 200px;
        margin: 10px 0;
        border-radius: 25px; /* 추가된 스타일 */
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .feature-description {
        font-size: 0.7rem;
    }

    .cta {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .cta_inner {
        font-size: 0.9rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .feature_header {
        font-size: 1.1em;
    }

    .feature_sub_header {
        font-size: 1.2rem;
    }

    .feature_container {
        padding: 10px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 200px;
        height: 200px;
        margin: 10px 0;
         border-radius: 50%; /* 추가된 스타일 */
    }

    .feature-title {
        font-size: 0.8rem;
    }

    .feature-description {
        font-size: 0.6rem;
    }

    .cta {
        font-size: 0.6rem;
        padding: 6px 12px;
    }

    .cta_inner {
        font-size: 0.6rem;
        padding: 2px 12px;
        margin-left : 10px;
    }
}
