.landing-page {
    background-color: #F8F8F8;
    /* color: white; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
}

.landing-page h1 {
    font-size: 3rem;
    margin: 0;
}

.landing-page p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #0578B7;
}


/* section */

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.categories .nav-pills .nav-link.active{
    background-color: #0578B7;
}

.categories .nav-pills .nav-link.active h3{
    color: white !important;
}

.categories ul li{
    margin: auto;
}

.category-card {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    border-radius: 8px;
    width: 100%;
    width: 290px;
    text-align: center;
    /* padding: 15px; */
    transition: transform 0.3s;
}

.category-card:hover {
    transform: scale(1.05);
}   

.category-card h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.blogs-section{
    padding: 30px 0px 70px;
}

.blog-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-card img {
    /* width: 100%; */
    /* max-width: 300px; */
    /* height: 100%; */
    /* object-fit: cover; */
}

.blog-content {
    padding: 15px;
}

.blog-content h3 {
    margin: 0;
    font-size: 1.5rem;
}

.blog-content p {
    font-size: 0.9rem;
    margin: 10px 0;
}

.blog-content a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.blog-content a:hover {
    text-decoration: underline;
}

.newsletter {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 20px;
}

.newsletter input {
    padding: 10px;
    width: 250px;
    margin: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    padding: 10px 20px;
    background: white;
    color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.newsletter button:hover {
    background: #0056b3;
    color: white;
}