* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background: #002F6C;
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
}

header .logo img {
    max-width: 150px;
}

nav {
    text-align: center;
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #E53935;
}

.section {
    padding: 50px;
    margin: 30px auto;
    background: white;
    border-radius: 8px;
    max-width: 800px;
    text-align: left;
    width: 90%;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #002F6C;
}

h2 {
    font-size: 1.9em;
    margin-top: 25px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

ul, ol {
    padding-left: 45px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

.job {
    background-color: #eeeeee;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 15px;
    background: #002F6C;
    color: white;
    width: 100%;
    margin-top: 30px;
}

a {
    color: #002F6C;
}

a:hover {
    text-decoration: underline;
    color: #E53935;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        display: block;
        margin: 10px 0;
    }
    
    header {
        padding: 10px;
    }

    .section {
        margin: 15px;
    }

    footer {
        font-size: 14px;
    }
}

#blog {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: left;
}

#blog h1 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 25px;
}

.blog-post {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin: 25px auto;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-post h2 {
    font-size: 1.9em;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.5;
    padding-top: 15px;
}

.blog-post .date {
    font-size: 1em;
    color: #777;
    margin-bottom: 20px;
}

.blog-post p {
    font-size: 1.2em;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post a {
    display: inline-block;
    font-size: 1.1em;
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    margin-top: 15px;
}

.blog-post a:hover {
    text-decoration: underline;
}
