.guide_container {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        margin-top: 80px; 
    }

    .guide_title {
        font-size: 42px;
        font-weight: 700;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        padding-bottom: 20px;
    }

    .guide_title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, #3498db, #2980b9);
        border-radius: 2px;
    }

    /* 서버 카드 스타일 */
    .server_cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(400px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
        justify-content: center;
        align-items: start;
    }

    .server_card {
        position: relative;
        background: #fff;
        border-radius: 20px;
        padding: 45px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        width: 100%;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .server_card:hover {
        transform: translateY(-5px);
    }

    .card_tag {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
    }

    .card_tag.ttj {
        background: linear-gradient(135deg, #3498db, #2980b9);
    }

    .card_tag.aws {
        background: linear-gradient(135deg, #e67e22, #f39c12);
    }

    .card_icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        position: relative;
        overflow: hidden;
    }

    .card_icon:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: currentColor;
        opacity: 0.1;
    }

    .card_icon i {
        font-size: 36px;
        position: relative;
        z-index: 1;
    }

    /* 자동화 서버 섹션 */
    .card_icon.automation {
        color: #4834d4;
    }
    .automation_btn {
        background: #4834d4;
    }
    .automation_btn:hover {
        background: #372aaa;
    }

    /* 데이터베이스 서버 섹션 */
    .card_icon.database {
        color: #2ecc71;
    }
    .database_btn {
        background: #2ecc71;
    }
    .database_btn:hover {
        background: #27ae60;
    }

    /* LAMP 서버 섹션 */
    .card_icon.lamp {
        color: #e67e22;
    }
    .lamp_btn {
        background: #e67e22;
    }
    .lamp_btn:hover {
        background: #d35400;
    }

    .server_card h2 {
        font-size: 26px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .server_card p {
        font-size: 18px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .card_features {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .card_features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 17px;
        color: #444;
        margin-bottom: 15px;
    }

    .card_features i {
        color: #3498db;
    }

    .card_button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        color: #fff;
        padding: 15px 30px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .faq_section {
        margin-top: 80px;
    }

    .faq_section h2 {
        font-size: 32px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 40px;
        text-align: center;
    }

    .faq_list {
        display: grid;
        gap: 25px;
    }

    .faq_item {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .faq_item h3 {
        font-size: 22px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .faq_item p {
        font-size: 17px;
        color: #444;
        line-height: 1.8;
    }

    .faq_item p strong {
        color: #2c3e50;
        font-weight: 600;
    }

    .faq_item p u {
        text-decoration: none;
        border-bottom: 2px solid #3498db;
        padding-bottom: 2px;
    }

    @media (max-width: 1024px) {
        .server_cards {
            grid-template-columns: minmax(350px, 600px);
            padding: 0 20px;
        }
    }

    @media (max-width: 768px) {
        .guide_container {
            margin-top: 120px;
            padding: 20px;
        }

        .guide_title {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .server_cards {
            grid-template-columns: minmax(300px, 400px);
            padding: 0 20px;
        }

        .server_card {
            padding: 30px;
            max-width: 100%;
        }

        .card_tag {
            top: 15px;
            right: 15px;
            padding: 6px 12px;
            font-size: 12px;
        }

        .card_icon {
            width: 60px;
            height: 60px;
        }

        .card_icon i {
            font-size: 28px;
        }

        .server_card h2 {
            font-size: 22px;
            margin-bottom: 15px;
            word-break: keep-all;
        }

        .server_card p {
            font-size: 16px;
            margin-bottom: 20px;
            word-break: keep-all;
        }

        .card_features {
            margin-bottom: 25px;
        }

        .card_features li {
            font-size: 15px;
            margin-bottom: 12px;
        }

        .card_button {
            width: 100%;
            padding: 12px 20px;
            font-size: 16px;
            justify-content: center;
        }

        .faq_section {
            margin-top: 50px;
        }

        .faq_section h2 {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .faq_list {
            gap: 15px;
        }

        .faq_item {
            padding: 20px;
        }

        .faq_item h3 {
            font-size: 18px;
            margin-bottom: 12px;
            word-break: keep-all;
        }

        .faq_item p {
            font-size: 15px;
            line-height: 1.6;
            word-break: keep-all;
        }
    }

    @media (max-width: 480px) {
        .guide_title {
            font-size: 24px;
        }

        .server_card h2 {
            font-size: 20px;
        }

        .server_card p {
            font-size: 15px;
        }

        .card_features li {
            font-size: 14px;
        }

        .faq_item h3 {
            font-size: 17px;
        }

        .faq_item p {
            font-size: 14px;
        }
    }

    .header_wrap {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
    }