  .guide_container {
        max-width: 1200px;
        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;
    }

    .curriculum_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .curriculum_card {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
    }

    .curriculum_card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .card_icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transform: rotate(-5deg);
    }

    .curriculum_card:nth-child(2) .card_icon {
        background: linear-gradient(135deg, #4ECDC4, #45B7AF);
        transform: rotate(5deg);
    }

    .curriculum_card:nth-child(3) .card_icon {
        background: linear-gradient(135deg, #FFD93D, #FFC107);
        transform: rotate(-5deg);
    }

    .card_icon i {
        font-size: 32px;
        color: #fff;
        filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.1));
    }

    .curriculum_card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .curriculum_card p {
        font-size: 15px;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .card_link {
        display: inline-flex;
        align-items: center;
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .card_link i {
        margin-left: 8px;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .card_link:hover {
        color: #2980b9;
    }

    .card_link:hover i {
        transform: translateX(5px);
    }

    .notice_message {
        grid-column: 1 / -1;
        text-align: center;
        padding: 40px;
        background: linear-gradient(135deg, #f6f9fc, #eef2f7);
        border-radius: 15px;
        margin-top: 20px;
    }

    .notice_message i {
        font-size: 32px;
        color: #3498db;
        margin-bottom: 15px;
    }

    .notice_message p {
        font-size: 18px;
        color: #2c3e50;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 1024px) {
        .curriculum_grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .guide_container {
            margin-top: 20px;
            padding: 20px;
        }

        .guide_title {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .curriculum_grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .curriculum_card {
            padding: 25px;
        }

        .curriculum_card h3 {
            font-size: 18px;
        }

        .curriculum_card p {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .card_link {
            font-size: 14px;
        }

        .notice_message {
            padding: 30px 20px;
        }

        .notice_message p {
            font-size: 16px;
        }
    }