/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

h2 {
    font-size: 1.8em;
    color: #004080;
    margin-bottom: 20px;
}

p {
    text-align: justify;
    margin: 10px 0;
}

/* Header Styles */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    padding: 10px 20px;
}

.header-logo img {
    max-width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav a {
    text-decoration: none;
    color: #004080;
}

/* Overview Section */
.overview-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.overview-section .content {
    flex: 1;
    min-width: 300px;
}

.overview-section .image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.overview-section .image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer-content {
    text-align: center;
    padding: 20px;
    background-color: #004080;
    color: white;
}

.social-media a img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-media a img:hover {
    transform: scale(1.2);
}
