/* General styles */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  padding: 0;
  background-color: #000;
}

/* Header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

/* Navigation */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: #444;
}

/* Logo */
.logo img {
  max-width: 350px;
  height: auto;
}

/* Home section */
.home-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  text-align: center;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
  }
}
/* Contact page */
.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px); /* Adjust the height */
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.contact-container {
  text-align: center;
  margin-left: 2
}

/* About page */
.about-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px); /* Adjust the height */
}

footer {
  text-align: center;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .contact-container {
    margin-top: 2rem;
  }
}

/* Services */
.services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
}

.service {
  text-align: center;
  margin: 2rem 0;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .services-container {
    flex-direction: column;
  }
}