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

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

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

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

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

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

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

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

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

.side-by-side {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  gap: 20px;
}

.side-by-side img {
  max-width: 300px;
  width: 100%;
  border-radius: 15px;
}

.side-by-side p {
  max-width: 600px;
  flex: 1;
  font-size: 1.1em;
}

/* Image Rows */
.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.image-row img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
}

.single-image {
  text-align: center;
  padding: 20px;
}

.single-image img {
  max-width: 640px;
  width: 90%;
  border-radius: 10px;
}

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

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;
}
