/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #0066cb;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a.logo {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.blog-section {
    text-align: center;
    padding: 40px;
}

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

.article {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    width: 300px;
}

.article img {
    width: 100%;
    border-radius: 5px;
}

.article h2 {
    color: #0066cb;
    font-size: 20px;
}

.article a {
    display: inline-block;
    margin-top: 10px;
    background-color: #0066cb;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}

footer {
    background-color: #0066cb;
    color: white;
    text-align: center;
    padding: 10px;
}


/* Add space between header and body content */
.blog-section {
    padding-top: 60px; /* Adjust the padding as needed */
    padding-left: 20px;
    padding-right: 20px;
}

/* Ensure that the body starts below the fixed header */
body {
    padding-top: 80px; /* Matches the height of the header to push content down */
}

.header {
    height: 80px; /* Height for the header to ensures consistency */
}
