  .sponsorship-tier {
      margin-bottom: 2rem;
      padding: 1.5rem;
      border-radius: 8px;
      color: #ffffff;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }
    
    .sponsorship-tier h3 {
      margin-top: 0;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      color: #ffffff;
    }

    /* Card Backgrounds */
    .stars-theme {color:#14366d ; background-color: #ffffff ; } /* Deep Gold */
    .sky-theme { background-color: #14366d; }     /* Rio Blue */
    .forest-theme { color: #fcd120;background-color: #258e43; } /* Rio Green */
    .sand-theme { color: #258e43; background-color: #fcd120; }    /* Dark Sand/Earth */

    
    /* Specific color override for Stars Sponsor Heading */
    .stars-theme h3 {
        color: #14366d;       /* Replace #000000 with your desired color */
        border-bottom-color: #14366d; /* Optional: Changes the underline color to match */
    }

        .forest-theme h3 {
        color: #fcd120;       /* Replace #000000 with your desired color */
        border-bottom-color: #fcd120; /* Optional: Changes the underline color to match */
    }

	.sand-theme h3 {
        color: #258e43;       /* Replace #000000 with your desired color */
        border-bottom-color: #258e43; /* Optional: Changes the underline color to match */
    }


    
    .sponsorship-tier ul {
      margin-top: 0.5rem;
      padding-left: 1.5rem;
    }
    .sponsorship-tier li {
      margin-bottom: 0.25rem;
      line-height: 1.5;
    }

    /* Table Styles */
    .sponsorship-table-container {
        overflow-x: auto;
        margin-top: 3rem;
    }
    
    table.sponsorship-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        color: #14366d; /* Dark text for table body to ensure readability on light backgrounds */
    }

    table.sponsorship-table th, 
    table.sponsorship-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid rgba(0,0,0,0.1);
        font-size: 0.9rem;
    }

    /* First column (Labels) - Dark Grey */
    table.sponsorship-table th:first-child,
    table.sponsorship-table td:first-child {
        text-align: left;
        font-weight: 600;
        background-color: #0000; 
        color: #14366d;
        width: 25%;
    }

    /* HEADERS (Match Dark Sponsor Colors) */
    table.sponsorship-table th.stars-col { background-color: #ffffff; color: #14366d; }
    table.sponsorship-table th.sky-col { background-color: #14366d; color: #ffff; }
    table.sponsorship-table th.forest-col { background-color: #258e43; color: #fcd120; }
    table.sponsorship-table th.sand-col { background-color: #fcd120; color: #258e43; }

    /* BODY COLUMNS (Very Light Tint of Sponsor Colors for Readability) */
    table.sponsorship-table td:nth-child(2) { background-color: #FFFFFF; } /* Light Gold tint */
    table.sponsorship-table td:nth-child(3) { background-color: #E6F4FA; } /* Light Blue tint */
    table.sponsorship-table td:nth-child(4) { background-color: #E8F5E9; } /* Light Green tint */
    table.sponsorship-table td:nth-child(5) { background-color: #FFFBE6; } /* Light Sand tint */

    /* Hover effect */
    table.sponsorship-table tr:hover td {
        filter: brightness(0.95);
    }
