.guide-download-section {
    padding: 70px 20px;
    background: linear-gradient(to bottom, #f4f9ff, #ffffff);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.guide-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.guide-container h2 {
    color: #0056a6;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.guide-container > p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 40px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.guide-card {
    background: #ffffff;
    border-top: 6px solid #0056a6;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-6px);
}

.guide-thumbnail {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    border: 3px solid #0056a6;
    border-radius: 10px;
    padding: 8px;
    background: #fff;
}

.guide-card h3 {
    color: #0056a6;
    margin-bottom: 12px;
    font-size: 22px;
}

.guide-card p {
    color: #666;
    line-height: 1.7;
    min-height: 60px;
    margin-bottom: 25px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0056a6, #0077cc);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, #004080, #005fa3);
    box-shadow: 0 5px 15px rgba(0,86,166,0.30);
}

@media (max-width: 768px) {

    .guide-container h2 {
        font-size: 28px;
    }

    .guide-card {
        padding: 25px;
    }

    .guide-thumbnail {
        width: 140px;
    }
}