.blog-tools-section {
    margin-bottom: 40px;
}

.blog-tools-section h2 {
    color: #3D5A6C;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8E8E8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-tools-section h2::before {   
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6A8AAA 0%, #5A7A9A 100%);
    border-radius: 2px;
    display: inline-block;
}

.blog-tool-content {
    display: flex;flex-wrap: wrap;justify-content: center;gap: 20px;}

.tool-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid #C0C0C0;
    transition: all 0.3s ease;
    max-width: 500px;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.tool-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.tool-card h3 {
    color: #3D5A6C;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.tool-card p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95em;
}

.tool-card-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.tool-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.tool-btn.primary {
    background: linear-gradient(180deg, #6A8AAA 0%, #5A7A9A 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tool-btn.primary:hover {
    background: linear-gradient(180deg, #5A7A9A 0%, #4A6A8A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tool-btn.secondary {
    background: linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    color: #5A7A9A;
    border: 1px solid #D0D0D0;
}

.tool-btn.secondary:hover {
    background: linear-gradient(135deg, #E8F0F5 0%, #D8E8F0 100%);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .tool-card {
        padding: 20px;
    }
    
    .tool-card-icon {
        font-size: 36px;
    }
    
    .tool-card h3 {
        font-size: 1.3em;
    }
    
    .tool-card-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .tool-btn {
        width: 100%;
        max-width: 200px;
    }
}