@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.blog-page-container {
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.blog-page-header {
    text-align: center;
    margin-top: 20px;
}

.blog-page-header img {
    border-radius: 12px;
}

.blog-page-header h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    margin-top: 20px;
    color: #333;
}

.blog-page-header p {
    font-size: 1.2rem;
    color: #555;
}

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

.blog-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.blog-section p {
    line-height: 1.6;
    color: #555;
}

#blog1-introduction p::first-letter {
    font-weight: bold;
    font-size: 1.5rem;
}

.blog-sidebar {
    background-color: #1e50ff;
    border-radius: 20px;
    padding: 20px;
    color: white;
}

.author-description {
    background-color: white;
    border-radius: 30px;
    padding: 20px;
    color: black;
}

.author-description h5 {
    font-weight: bold;
}

.blog-highlight {
    color: red;
    font-weight: bolder;
}

.blog-sidebar ul {
    list-style: none;
}

.blog-sidebar h5 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.blog-sidebar ul li {
    margin-bottom: 15px;
}

.blog-sidebar ul li a {
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
}

.blog-sidebar ul li a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */

/* Tablet Devices */
@media (max-width: 768px) {


    .blog-page-header h1 {
        font-size: 2rem;
    }

    .blog-page-header p {
        font-size: 1rem;
    }

    .blog-section h2 {
        font-size: 1.5rem;
    }

    .blog-sidebar {
        margin: 20px;
    }

    .blog-sidebar h5 {
        font-size: 24px;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .blog-page-header h1 {
        font-size: 1.5rem;
    }

    .blog-page-header p {
        font-size: 0.9rem;
    }

    .blog-section h2 {
        font-size: 1.3rem;
    }

    .blog-section p {
        font-size: 1rem;
    }

    .blog-sidebar {
        padding: 15px;
    }

    .author-description {
        padding: 15px;
    }

    .blog-sidebar h5 {
        font-size: 22px;
    }

    .blog-sidebar ul li a {
        font-size: 0.9rem;
    }
}
