/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f2f5;
}

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

/* Header */
.main-header {
  background-color: white;
}

.black-bar {
  background-color: black;
  height: 10px;
}

.header-content {
  padding: 30px 20px;
  text-align: center;
}

/* Navigation */
.navbar {
  background-color: #333;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 25px;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Content Sections */
.content-section {
  padding: 40px 20px;
  text-align: center;
}

.content-section h2 {
  margin-bottom: 10px;
}

.rounded-img {
  width: 80%;
  max-width: 600px;
  border-radius: 15px;
  margin-top: 20px;
}

/* Flex Layout Sections */
.flex-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}

.flex-section.reverse {
  flex-direction: row-reverse;
}

.text-list {
  flex: 1;
  list-style-type: disc;
  padding-left: 40px;
  margin: 20px;
}

.text-list li {
  margin-bottom: 12px;
  font-size: 1.1em;
}

.side-img {
  flex: 1;
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  margin: 20px;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 30px 10px;
  margin-top: 40px;
}

footer .social-icons {
  margin-top: 10px;
}

footer a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-size: 1em;
}

footer a i {
  margin-right: 6px;
}

footer a:hover {
  color: #ccc;
}