/* Top Section Navigation */
nav ul.menu-bar {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #333;
    color: #fff;
}

nav ul.menu-bar li {
    margin: 10px;
}

nav ul.menu-bar li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

nav ul.menu-bar li a:hover {
    background-color: #f4a261;
    border-radius: 5px;
}

/* Search Bar */
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.search-bar input {
    width: 300px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-bar button {
    background-color: #2a9d8f;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #21867a;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul.menu-bar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-bar input {
        width: 80%;
    }
}

/* General Blog Page Styling */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f5f5f5;
    line-height: 1.8;
    color: #333;
}

/* Blog Container Styling */
.blog-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-top: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.blog-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Blog Title */
.blog-container h1 {
    color: #2a9d8f;
    border-bottom: 4px solid #2a9d8f;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

/* Blog Date */
.blog-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Blog Image Styling */
.blog-container img {
    width: 100%;
    height: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Paragraph Styling */
.blog-container p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #444;
}

/* Subheading Styling */
.blog-container h2 {
    color: #2a9d8f;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* List Styling */
.blog-container ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 25px;
}

.blog-container ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Back Link Styling */
.back-link {
    display: inline-block;
    margin-top: 40px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-link:hover {
    text-decoration: underline;
    color: #0056b3;
}


/* Responsive Styling */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    .blog-container {
        padding: 20px;
    }
    .blog-container h1 {
        font-size: 2rem;
    }
    .blog-container h2 {
        font-size: 1.5rem;
    }
}



