.room-conference-solutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f5;
  color: #555;
}

.solutions-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.room-content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.room-content.active {
  display: flex;
}

.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.navigation-section {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: center;
}

.sidebar-navigation {
  flex: 1;
  max-width: 250px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.nav-item {
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.nav-item span {
  font-size: 1.6rem;
}

.nav-item.active {
  border-bottom: 2px solid black;
}

.nav-item:hover {
  border-bottom: 2px solid black;
}

.content-display {
  flex: 3;
  display: flex;
  flex-direction: column;
}

.room-details {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.room-details-inner{
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.room-details.active {
  display: flex;
}

.room-image {
  flex: 2;
}

.room-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.room-specifications {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.room-icon {
  width: 100px;
}

.room-icon img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.room-stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
}

.stat-item .stat-label {
  font-size: 1.6rem;
  color: #555;
}

.room-features {
  width: 100%;
}

.room-features ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 15px;
  width: 100%;
  margin-top: 10px;
}

.room-features ul li {
  list-style: disc;
  margin-left: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
}

.feature-icon {
  width: 80px;
}

.feature-icon img {
  width: 100%;
  object-fit: cover;
}

.feature-text {
  font-size: 1.6rem;
  color: #555;
}

.related-products {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.products-content{
  width: 100%;
}

.related-products .products-content .products-header .products-title{
  font-size: 2rem;
  text-align: left;
  padding-left: 20px;
  font-weight: bold;
  color: #333;
}

.products-carousel{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  padding: 20px;
}

.product-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}

.product-image {
  width: 100%;
}

.product-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height:180px;
}

.product-info{
  display: flex;
  flex-direction: column;
  gap:5px;
}

.product-link a{
  color: #007bff;
}

@media (max-width: 468px) {
  .navigation-section{
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .products-carousel{
    justify-content: center;
  }
}