/* ===== GUIDE SECTION ===== */
.guide-section{
    padding:40px 20px;
    background:#f5f7fa;
}

.guide-container{
    max-width:1200px;
    margin:auto;
}

/* ===== TOP WARNING ===== */
.guide-top-warning{
    margin-bottom:25px;
}

.guide-warning-box{
    background:#ffe6e6;
    color:#a10000;
    padding:12px 15px;
    border-left:5px solid #ff0000;
    border-radius:6px;
    font-size:14px;
}

/* ===== GRID ===== */
.guide-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

/* ===== BOX DESIGN ===== */
.guide-box{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.guide-box:hover{
    transform:translateY(-5px);
}

.guide-title{
    font-size:18px;
    font-weight:bold;
    margin-bottom:15px;
    color:#2f5c8f;
}

.guide-box ul{
    padding-left:18px;
}

.guide-box ul li{
    margin-bottom:8px;
    font-size:14px;
}

/* ===== BUTTON ===== */
.guide-btn{
    display:block;
    text-align:center;
    background:#2f5c8f;
    color:#fff;
    padding:15px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    margin-bottom:15px;
    transition:0.3s;
}

.guide-btn:hover{
    background:#1d4169;
}

/* ===== TABLET (3 COLUMN) ===== */
@media(min-width:768px){
    .guide-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* ===== DESKTOP (4 COLUMN) ===== */
@media(min-width:1024px){
    .guide-grid{
        grid-template-columns:repeat(4,1fr);
    }
}