* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}
.container {
  max-width: 1100px;
  margin: 0 auto; /* Center horizontally */
  padding: 20px;
}
.wrapper {
  display: flex;
  justify-content: center;

  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}
.menu {
  flex: 1;
  min-width: 300px;
}
.menu h1 {
  font-size: 30px;
  margin-bottom: 20px;
}
.create-box {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.create-box img {
  width: 150px;
  height: auto;
  border-radius: 6px;
}
.create-box .text {
  flex: 1;
  padding: 0 15px;
}
.create-box h2 {
  color: #0074b8;
  margin: 0;
}
.create-box p {
  margin: 8px 0;
}
.links a {
  margin-right: 12px;
  font-size: 14px;
  color: #0074b8;
  text-decoration: none;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2 , 1fr);
  gap: 15px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  font-size: 16px;
  color: #0074b8;
  margin: 12px 0 16px;
}

.card.promo {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.card_promo {
  display: flex;
  gap: 15px;
  background-color: white;
  border-radius: 10px;
  margin-top: 15px;
  padding: 20px;
}
.card_promo:hover {
  background-color: #0074b8;
  color: white !important;
}
.card_promo:hover h3 {
  color: white !important;
}
.menu a {
  text-decoration: none;
}
.card_promo h3 {
  font-size: 24px;
  padding: 15px 0px;
  color: #0074b8;
}
.card_promo img {
  width: 150px;
  height: 100px;
  border-radius: 10px;
}
.store p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.card.promo div {
  padding: 12px 16px;
}

.card.promo h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #d71920;
}

.card.promo p {
  font-size: 14px;
  color: #333;
}

.sidebar {
  width: 100%;
  max-width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  height: fit-content;
}
.continue {
  background: #d71920;
  color: white;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 15px;
}
.section h4 {
  margin-bottom: 10px;
}
.heading{
  background-color: #0074b8;
  padding: 10px;
}
.store span {
  color: #0074b8;
  cursor: pointer;
  font-size: 10px;
}
.store h4{
  font-size: 15px;
  color: #0074b8;
}
label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}
input[type="date"],
select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}
.note {
  font-size: 12px;
  color: red;
  margin-top: 5px;
}
.restrictions {
  color: #0074b8;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }
  .create-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .create-box .text {
    padding: 10px 0 0;
  }
}
