#landing-page {
  font-family: Arial, sans-serif;
}

#landing-page .container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

#landing-page .left,
#landing-page .right {
  flex: 1 1 500px;
  padding: 20px;
  box-sizing: border-box;
}

#landing-page .left {
  background: #f5f5f5;
}

#landing-page h2 {
  margin-top: 0;
}

#landing-page .deal {
  font-size: 20px;
  margin: 15px 0;
}

#landing-page .open-button {
  background: #333;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

#landing-page .slide-in-form {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

#landing-page .slide-in-form.open {
  max-height: 1000px;
}

#landing-page form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

#landing-page input,
#landing-page textarea,
#landing-page button {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

#landing-page .map {
  width: 100%;
  height: 450px;
  border: none;
}

#landing-page .hours-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

#landing-page .hours-list.show {
  max-height: 500px;
}

#landing-page .hours-list li {
  padding: 4px 0;
  font-size: 14px;
}

#landing-page .hours-list li.active {
  color: #ffffff;
  background-color: #28a745;
  font-weight: bold;
  padding: 6px;
  border-radius: 5px;
}

#landing-page .file-upload {
  border: 2px dashed #ccc;
  border-radius: 6px;
  padding: 20px;
  background-color: #fafafa;
  text-align: center;
  cursor: pointer;
}

#landing-page .file-upload:hover {
  border-color: #28a745;
  background-color: #f0fff5;
}

#landing-page .file-upload label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Responsive Breakpoints */
@media screen and (max-width: 768px) {
  #landing-page .container {
    flex-direction: column;
  }
}

@media screen and (max-width: 320px) {
  #landing-page .left,
  #landing-page .right {
    padding: 10px;
  }

  #landing-page h2,
  #landing-page .deal,
  #landing-page p,
  #landing-page button,
  #landing-page input,
  #landing-page textarea {
    font-size: 14px;
  }

  #landing-page .open-button {
    width: 100%;
  }

  #landing-page form {
    gap: 8px;
  }
}
