/* Global Styles */
body {
  font-family: 'Verdana', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: #2f4f4f; /* Dark Slate Gray for text */
  background-color: #f5f5f5; /* Light Gray for background */
}

/* Header Section */
header {
  background: linear-gradient(135deg, #6fcf97, #56b6c2); /* Gradient green and blue */
  color: white;
  text-align: center;
  padding: 2.5rem 1rem;
}

header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

/* Main Content */
main {
  padding: 2rem;
  text-align: center;
}

.intro,
.about {
  margin-bottom: 2.5rem;
}

.intro h2,
.about h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #388e3c; /* Forest Green for titles */
}

.intro p,
.about p {
  font-size: 1.1rem;
  color: #4f4f4f; /* Dark Gray for body text */
}

/* Images Section */
.images {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.image {
  width: 40%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Soft shadow */
}

/* Footer Section */
footer {
  background: #2f4f4f; /* Dark Slate Gray */
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
}

footer p {
  margin: 0;
  font-size: 1rem;
}
