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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

/* H1 Styling */
h1 {
    font-size: 2.5rem; /* Adjust size to fit design */
    color: #333; /* Dark gray for good readability */
    text-align: center; /* Center-align for balance */
    margin-bottom: 20px; /* Spacing below the heading */
    font-weight: bold; /* Emphasize the main heading */
}

/* Top Bar */
header {
    background-color: #333;
    padding: 10px 0;
}
.navbar {
    display: flex;
    justify-content: center;
    list-style: none;
}
.navbar li {
    margin: 0 15px;
}
.navbar a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}
.navbar a:hover {
    text-decoration: underline;
}

/* Sections */
main {
    flex: 1;
}

/* Logo Section */
.logo-section {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.logo-container {
    text-align: center;
}
.logo {
    max-width: 200px;
    height: auto;
}

/* Content Sections */
.content-section {
    padding: 40px 20px;
    text-align: center;
}
.content-section:nth-child(even) {
    background-color: #f9f9f9;
}
.content-section:nth-child(odd) {
    background-color: #ffffff;
}
.content-section h2 {
    margin-bottom: 20px;
    color: #333;
}
.content-section p {
    margin-bottom: 10px;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}
footer a {
    color: #4CAF50;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
