/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Applying Roboto font */
    background-color: #f7f7f7;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #00529b;
    padding: 20px 0;
}

header h1 {
    color: #fff;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.main-section {
    padding: 40px 0;
}

.main-section h2 {
    margin-bottom: 20px;
}

/* Article styles */
.article {
    margin-bottom: 40px;
}

.article h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.article p {
    font-size: 16px;
    line-height: 1.6;
}

.article img {
    max-width: 100%; /* Ensure image is responsive */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevents extra space underneath image */
}

footer {
    background-color: #00529b;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
