/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

/* Header with Background Image and Shadow */
header {
  background-image: url('image'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for shadow effect */
  z-index: 1;
}

header nav,
header .hero {
  position: relative;
  z-index: 2;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  color: #666;
}

/* New Image Section */
.image-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.image-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.image-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-item img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact-section {
  background-color: #333;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.copyright {
  font-size: 0.9rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
  }
}