body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}
#blogs-section {
    text-align: center;
    padding: 50px 20px;
}
.section-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}
.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.blog-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.blog-card h3 {
    color: #007bff;
}
.blog-card:hover {
    transform: translateY(-5px);
}
#home-btn{
    font-weight: bold;
    font-style: italic;
    color: rgb(255, 255, 255);
    background-color: #2f3d40;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    margin-left: 20px;
    border-radius: 10px;
    transition: background-color 0.5s, transform 0.5s;
}
#service-btn:hover{
    background-color: #555;
    transform: translateY(-5px);
}