/* Base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #eee;
  font-size: 18px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.logo {
  max-width: 140px;
  height: auto;
}

@media screen and (max-width: 600px) {
  .logo {
    max-width: 100px;
  }
}s
h1 {
  color: #e50914;
}

nav {
  background: #111;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: #e50914;
  text-decoration: none;
  font-weight: bold;
  margin: 0 40px;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

section h2 {
  color: #e50914;
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin: 5px 0;
  padding: 10px;
  background: #222;
  border: none;
  color: #eee;
}

button {
  background: #e50914;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 10px;
  background: #111;
  color: #555;
  margin-top: 20px;
}

#featured-services li {
  display: block;
  margin-bottom: 20px;
}

#featured-services .services-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
}

#featured-services .services-images img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  border: 2px solid #333;
}

#featured-services .services-images img:first-child {
  margin-left: -300px;
}

#featured-services .services-images img:last-child {
  margin-top: 100px;
  margin-left: -300px;
}

@media (max-width: 768px) {
  #featured-services {
    flex-direction: column;
    padding: 20px;
  }

  #featured-services .services-images {
    max-width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  #featured-services .services-images img {
    width: 100%;
    margin-left: 0;
  }

  #featured-services .services-images img:first-child,
  #featured-services .services-images img:last-child {
    margin-left: 0;
  }
}

#additional-services {
  text-align: left;
  padding-left: 40px;
}

#additional-services ul {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

#additional-services ul li {
  margin-bottom: 15px;
}

#featured-services ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

#featured-services ul li {
  background-color: #cc0000;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 1em;
  margin-bottom: 8px;
  width: fit-content;
}

.badge-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.badge-list li {
  background-color: white;
  color: black;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: default;
  transition: transform 0.2s;
}

.badge-list li:hover {
  transform: scale(1.05);
}

/* Make navigation mobile-friendly */
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

nav ul li {
  margin: 5px 10px;
}

nav ul li a {
  display: block;
  padding: 10px 15px;
  background-color: #111;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #333;
}

/* Responsive behavior on smaller screens */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }

  nav ul li a {
    width: 90%;
    text-align: center;
  }

