* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* =========================
   BANNER
========================= */
.banner {
  position: relative;
  height: 30vh;
  background: url("../../images/banner2.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.banner h2 {
  font-size: 40px;
}

/* ===============================
   Sponsorship Section
   =============================== */

.sponsorship {
  padding: 60px 20px;
  background: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.sponsorship .container {
  max-width: 1200px;
  margin: auto;
}

/* Grid Layout */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

/* Sponsor Cards */
.sponsor-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sponsor-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.sponsor-card ul {
  list-style: none;
  padding: 0;
}

.sponsor-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.95rem;
}

.sponsor-card ul li:last-child {
  border-bottom: none;
}

/* Color Themes */
.brass { background: linear-gradient(135deg, #eeb155 25%, #ffffff); }
.bronze { background: linear-gradient(135deg, #cd7f32 25%, #ffffff); }
.silver { background: linear-gradient(135deg, #b1afaf 25%, #ffffff); }
.gold { background: linear-gradient(135deg, #ffd700 25%, #ffffff); }
.platinum { background: linear-gradient(135deg, #e5e4e2 25%, #ffffff); }

/* Notes */
.note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 30px;
}

/* Extra Section */
.extra h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.extra-table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
}

.extra-table td {
  padding: 12px;
  border-bottom: 2px solid #333;
  font-weight: 600;
}

.extra-table td:last-child {
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .extra-table {
    width: 100%;
  }

  .price {
    font-size: 1.15rem;
  }
}
