/* Sponsors Page Styles */

/* Become a Sponsor Section */
.become-sponsor-section {
  text-align: center;
  padding: 40px 20px;
}

.become-sponsor-section.container {
  width: 75%;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.become-sponsor-section h2 {
  font-size: 2.5rem;
  color: #34495e;
  margin-bottom: 20px;
}

.become-sponsor-section p {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.become-sponsor-section a {
  display: inline-block;
  padding: 15px 30px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
}

.become-sponsor-section a:hover {
  background-color: #0056b3;
}

.be-the-difference {
  text-align: left;
  margin-top: 30px;
  color: #34495e;
  line-height: 1.6;
}

.be-the-difference h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-top: 20px;
}

.be-the-difference p {
  font-size: 1.1rem;
  margin: 15px 0;
}

.be-the-difference ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.be-the-difference ul li {
  font-size: 1.1rem;
  margin: 10px 0;
}

.be-the-difference strong {
  font-weight: bold;
  color: #000;
}


/* Sponsor Packages Section */
.sponsor-packages-section {
  padding: 40px 20px;
  text-align: center;
}

.sponsor-packages-section h2 {
  font-size: 2.5rem;
  color: #34495e;
  margin-bottom: 30px;
}

.sponsor-packages {
  width: 75%;
  margin: 0 auto;
  overflow-x: auto; /* Allow horizontal scrolling for smaller screens */
}

.sponsor-packages table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
}

.sponsor-packages th,
.sponsor-packages td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.sponsor-packages th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.sponsor-packages td {
  font-size: 1rem;
}

.sponsor-packages td:first-child {
  text-align: left;
  font-weight: bold;
}

/* Thank You Sponsors Section */
.thank-you-sponsors-section {
  margin: 40px auto;
  padding: 20px;
  width: 75%;
  text-align: center;
}

.thank-you-sponsors-section h2 {
  font-size: 2.5rem;
  color: #34495e;
  margin-bottom: 30px;
}

#sponsors-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-content: center;
}

.sponsor-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sponsor-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .become-sponsor-section,
  .sponsor-packages,
  .thank-you-sponsors-section {
    width: 90%; /* Reduce the width on smaller screens */
  }

  .sponsor-packages table {
    font-size: 0.9rem; /* Slightly smaller text for better readability */
  }

  .sponsor-packages th,
  .sponsor-packages td {
    padding: 8px; /* Adjust padding for smaller screens */
  }
}

@media (max-width: 480px) {
  .become-sponsor-section h2,
  .sponsor-packages-section h2,
  .thank-you-sponsors-section h2 {
    font-size: 2rem; /* Reduce heading size for very small screens */
  }

  .become-sponsor-section p {
    font-size: 1rem; /* Adjust paragraph size */
  }

  .sponsor-packages table {
    font-size: 0.8rem; /* Further reduce text size */
  }
}
