.button-container {
  margin-top: 20px;
}

.custom-button {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  background-color: #2f3132;
  color: #fff;
  border: none;
  padding: 10px 40px;
  font-size: 16px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 100;
  font-family: "Avenir55Roman", sans-serif;
}

.custom-button:hover {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}

/* Breadcrumb Style */
.breadcrumb {
  font-size: 14px;
  margin-left: 60px;
  color: #333;
}

.breadcrumb a {
  font-weight: 100;
  text-decoration: none;
  color: #555;
}

.breadcrumb span {
  color: #333;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.carousel {
  flex: 1 1 45%;
  max-width: 600px;
  text-align: center;
}

.details {
  flex: 1 1 45%;
  max-width: 600px;
  margin-left: 50px;
}

.details h1 {
  margin-bottom: 10px;
  font-size: 30px;
  text-align: left;
}

.details p {
  margin-bottom: 20px;
  color: #555;
  font-size: 16px;
  text-align: left;
}

.details ul li {
  list-style: initial;
}

.details ul li strong {
  color: #333;
}

.details ul li span {
  color: #555;
}
/* Responsive Design */
@media (max-width: 768px) {
  .carousel,
  .details {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0px;
  }

  .details h1 {
    font-size: 20px;
  }

  .details p {
    font-size: 14px;
  }
  .flex-container {
    padding: 0px 30px;
  }

  .details ul {
    padding-left: 20px;
  }

  .breadcrumb {
    margin-top: 20px;
    margin-left: 55px;
  }
}

@media (max-width: 468px) {
  .breadcrumb {
    margin-left: 10px;
  }
}
