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: Arial, 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-weight: bold;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #d94d04;
    }

       .featured-sponsors-section {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0 12px 32px 12px;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #274c77;
  margin-bottom: 36px;
  margin-top: 0;
}
.featured-title .orange {
  color: #f25c05;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 36px;
  margin: 0 auto;
  max-width: 900px;
}

.sponsor-card {
  background: #fff;
  border: 4px solid #ffe3d0;
  border-radius: 4px;
  width: 270px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .2s;
  box-sizing: border-box;
  margin-bottom: 0;
}
.sponsor-card img {
  max-width: 80%;
  max-height: 80%;
  display: block;
  object-fit: contain;
}

/* Responsive styles */
@media (max-width: 900px) {
  .sponsors-grid {
    gap: 22px 12px;
    max-width: 100%;
  }
  .sponsor-card {
    width: 43vw;
    min-width: 160px;
    max-width: 270px;
    height: 120px;
  }
}

@media (max-width: 600px) {
  .featured-title {
    font-size: 1.5rem;
  }
  .sponsors-grid {
    flex-direction: column;
    gap: 18px 0;
    align-items: center;
  }
  .sponsor-card {
    width: 90vw;
    min-width: 120px;
    height: 85px;
  }
}

.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;
  }
}