.main-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.online-shopping {
  flex: 1;
  display: flex;
  border: 1px solid #ccc;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.online-shopping img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.online-shopping img:hover {
  transform: scale(1.1);
}

.card-section {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card-box {
  background-color: white;
  padding: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  border: 1px solid #ccc;
  text-align: center;
}

.card-box img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card-box img:hover {
  transform: scale(1.1);
}

.card-buttons button {
  margin: 3px;
  font-size: 14px;
}

.navbar-light .navbar-brand img {
  max-height: 70px;
  transition: 0.5s;
}
