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

/* Body Styling */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
  padding: 0 20px;
}

/* Header */
header {
  text-align: center;
  padding: 40px 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  color: #777;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section {
  margin-bottom: 40px;
}

/* Article Styling */
article {
  margin-top: 20px;
}

article h2 {
  font-size: 2em;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

article p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

/* Image Containers */
.image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: space-between;
}

.image-container img {
  width: 48%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
  transform: scale(1.05);
}

.collage-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.collage-container img {
  width: 23%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.collage-container img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
  font-size: 1em;
  color: #777;
}

footer a {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2em;
  color: #007BFF;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .image-container img,
  .collage-container img {
    width: 100%;
  }
}
