/* Global styles */
body {
  font-family: 'Century Gothic', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #eef2f3;
  color: #333;
}

/* Banner at the top */
.banner {
  background-color: #04244c;
  color: white;
  padding: 10px;
  text-align: center;
}
.banner img {
  height: 60px;
}

/* Container centers the page content with max width of 960px */
.container {
  max-width: 960px;
  margin: 20px auto;
  display: flex;
}

/* Sidebar styles (side navigation menu) */
.sidebar {
  width: 220px;
  background-color: #04244c;
  padding: 20px;
  box-sizing: border-box;
  color: white;
  flex-shrink: 0;
}
.sidebar a {
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  color: white;
  background-color: transparent;
  border-radius: 3px;
  transition: background 0.3s;
}
.sidebar a:hover {
  background-color: #4a70b9; /* lighter dark blue */
}

/* Main content area */
.main-content {
  flex-grow: 1;
  padding: 20px;
  box-sizing: border-box;
}

/* Card styling for structured information */
.card {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* CEO profile styling */
.ceo-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ceo-profile img {
  max-width: 200px;
  margin-right: 20px;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
  .main-content {
    width: 100%;
  }
  .ceo-profile {
    flex-direction: column;
    align-items: center;
  }
  .ceo-profile img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
