body {
    font-family: Arial, sans-serif;
    font-family: Arial Rounded MT Bold;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
h1, h2, h3, h4 {
    color: #2c3e50;
}

.brainstorm-image {
    height: 48px;
    position: relative;
    top: 10px;
}
/* CSS for sticky footer layout */
.page-content {
    flex: 1 0 auto; /* This makes this div take up all available space */
}

#footerContainer {
    flex-shrink: 0; /* Prevent the footer from shrinking */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section {
    margin-bottom: 30px;
}
.section h2 {
    color: #3498db;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.nav a {
    color: #3498db;
    text-decoration: none;
}
.nav a:hover {
    text-decoration: underline;
}