body {
      margin: 0;
      padding: 0;
    }

    /* Header container */
    header {
      width: 1440px;
      height: 105px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      box-sizing: border-box;
      font-family: "Bebas Neue", sans-serif; 
      position: relative;
      left: 100px;
    }

    /* Logo */
    .logo {
      position: absolute;
      left: 100px;
      top: 0;
      width: 210px;
      height: 105px;
      display: flex;
      align-items: center;
    }

    .logo img {
      width: 210px;
      height: 105px;
      transform: rotate(0deg);
      opacity: 1;
    }

    /* Navigation */
    nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    nav ul {
      display: flex;
      gap: 25px;
      list-style: none;
      padding: 0;
      margin-left: 200px;
    }

    nav ul li {
      font-size: 20px;
      text-transform: uppercase;
      cursor: pointer;
      font-family: "Bebas Neue", sans-serif; 
    }

    /* Button */
    .btn {
      background: #f25c05;
      color: #fff;
      padding: 12px 25px;
      text-decoration: none;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #d94d04;
    }

    .competition-section {
      display: flex;
      border: 1px solid #ccc;
    }

    /* LEFT SIDE */
    .left-box {
      width: 35%;
      background: #f6f8fc;
      padding: 40px 30px;
    }
    .left-box h2 {
      font-size: 22px;
      margin-bottom: 15px;
      color: #0d2341;
    }
    .left-box p {
      font-size: 14px;
      line-height: 1.6;
      color: #333;
      margin-bottom: 20px;
    }
    .info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #fff;
      padding: 14px;
      margin-bottom: 15px;
      font-size: 14px;
      font-weight: bold;
      color: #0d2341;
      border: 1px solid #eee;
      position: relative;
    }
    .info-item::after {
      content: "";
      position: absolute;
      right: -15px;
      top: 50%;
      transform: translateY(-50%);
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      border-left: 15px solid #b30d0d;
    }

    /* RIGHT SIDE */
    .right-box {
      width: 65%;
      padding: 40px;
      border-left: 1px solid #ddd;
    }
    .right-box h2 {
      font-size: 22px;
      margin-bottom: 25px;
      color: #0d2341;
    }
    .right-box h2 span { color: #ff4d00; }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
    }
    .form-group label {
      font-size: 13px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #333;
    }
    .form-group input,
    .form-group select {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 2px;
      font-size: 14px;
    }
    .full { grid-column: span 2; }

    /* CUSTOM CHECKBOX */
    .checkbox,
    .option {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 6px 0;
      font-size: 13px;
      color: #111;
    }
    input[type="checkbox"] {
      accent-color: #003d8d; 
      width: 16px;
      height: 16px;
    }

    /* OPTION BOX (peach background) */
    .option-box {
      background: #fff4f0;
      border: 1px solid #ffd5c9;
      padding: 15px;
      margin-top: 15px;
    }
    .option-box label {
      display: block;
      font-size: 12px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #333;
    }

    /* SUBMIT BUTTON */
    .submit-btn {
      grid-column: span 2;
      background: #ff4d00;
      border: none;
      padding: 14px;
      font-size: 16px;
      font-weight: bold;
      color: #fff;
      cursor: pointer;
      margin-top: 20px;
      transition: 0.3s;
    }
    .submit-btn:hover { background: #d43a00; }

    /* RESPONSIVE */
    @media(max-width: 900px) {
      .competition-section { flex-direction: column; }
      .left-box, .right-box { width: 100%; }
      .form-grid { grid-template-columns: 1fr; }
      .full { grid-column: span 1; }
    }

.cook-sites {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 15px;
}

.cook-card {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.card-image {
  width: 50%;
  min-height: 230px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.card-info h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
        font-family: "Bebas Neue", sans-serif; 
}

.card-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 25px;
  font-family: 'Jost';
}

.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 26px;
  font-weight: bold;
  color: #0060c9;
}

.buy-btn {
  background: #0b2c62;
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.buy-btn:hover {
  background: #06224a;
}

/* Responsive */
@media (max-width: 768px) {
  .cook-card {
    flex-direction: column;
  }
  .card-image,
  .card-info {
    width: 100%;
  }
  .card-info {
    padding: 20px;
  }
  .bottom-row {
    flex-direction: row;
  }
}

.footer {
  background-color: #0b2a56; /* Dark Blue */
  color: #fce5db;           /* Light Beige */
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.footer-left h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 1px;
  color: #fce5db;
}

.footer-left .highlight {
  color: #ff3c00; /* Orange for BBQ */
}

.footer-right {
  text-align: right;
}

.btn-competition {
  display: inline-block;
  background-color: #ff3c00;
  color: white;
  font-weight: 600;
  padding: 14px 35px;
  text-decoration: none;
  margin-bottom: 30px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #fce5db;
  text-decoration: none;
  font-size: 18px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  padding: 15px 10px;
  text-align: center;
  font-size: 14px;
  color: #ddd;
  font-family: Arial, sans-serif; /* small text different font */
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 25px;
  }

  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 25px;
  }
}