/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2; /* Light gray background */
  color: #333; /* Dark text color */
}

header {
  background-color: #1e395a; /* Dark blue color */
  color: white;
  padding: 10px 20px;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero section styles */
.hero {
  background-image: url('hero-image.jpg'); /* Replace 'hero-image.jpg' with your actual image */
  background-size: cover;
  background-position: center;
  height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
}

/* About section styles */
.about {
  padding: 50px 0;
  background-color: #fff; /* White background */
}

.about-content {
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
}

/* Contact section styles */
.contact {
  padding: 50px 0;
  background-color: #1e395a; /* Dark blue background */
  color: white;
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 1.1rem;
}

/* Footer styles */
footer {
  background-color: #1e395a; /* Dark blue background */
  color: white;
  text-align: center;
  padding: 20px 0;
}
