
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f6f7;
}

.navbar {
    background-color: #083c5d;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.navbar .menu {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar .menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar .menu li a.active {
    text-decoration: underline;
}

.hero {
    text-align: center;
    background: linear-gradient(to right, #1d4350, #a43931);
    color: white;
    padding: 60px 20px;
}

.blog-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-post {
    background-color: white;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 5px solid #00c853;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
    color: #083c5d;
    margin-bottom: 10px;
}

.blog-post .date {
    font-size: 0.9em;
    color: gray;
    margin-bottom: 10px;
}

.blog-post a {
    display: inline-block;
    margin-top: 10px;
    color: #00c853;
    font-weight: bold;
    text-decoration: none;
}

footer {
    background-color: #083c5d;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
