body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background: #1a1a1a;
  padding: 20px 0;
  color: white;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #e8f0ff;
}

.hero h2 {
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
}

.about-section h2,
.about-section p {
  display: block;       /* Ensures each is on its own line */
  width: 100%;          /* Forces full width */
}

.about-section h2 {
  margin-bottom: 20px;  /* Adds spacing below the heading */
  font-size: 2em;
}

.about-section p {
  margin-bottom: 16px;  /* Adds spacing between paragraphs */
  line-height: 1.6;
  font-size: 1.1em;
}

.about-section {
  display: block; /* or remove display:flex if inherited */
}

.container p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.about-section h2 {
  margin-bottom: 20px;
  font-size: 2em;
}

.about-section p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1.1em;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.hero-content {
  text-align: center;
  margin-top: 20px;
}

.image-gallery {
  margin: 50px 0;
  text-align: center;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #0073e6;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
