        :root {
            --primary-color: #2E8B57;
            --secondary-color: #166534;
            --accent-color: #F0F8FF;
            --text-color: #333;
            --light-gray: #f7f7f7;
            --medium-gray: #e0e0e0;
            --dark-gray: #4a4a4a;
            --bronze: #CD7F32;
            --silver: #C0C0C0;
            --gold: #FFD700;
            --platinum: #E5E4E2;
            --headline: #265074;
            /* New headline sponsor color (purple) */
        }

        .h-sponsor {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .page-title {
            text-align: center;
            padding: 40px 0;
            background-color: var(--light-gray);
            margin-bottom: 30px;
        }

        .page-title h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .page-title p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .info-section {
            margin-bottom: 50px;
        }

        .info-section h2 {
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .info-box {
            background-color: var(--accent-color);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 0 4px 4px 0;
        }

        .free-event-box {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 0 4px 4px 0;
        }

        .info-box h3,
        .free-event-box h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .free-event-box h3 {
            color: #856404;
        }

        .benefit-list {
            list-style-type: none;
            margin-bottom: 20px;
        }

        .benefit-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 30px;
        }

        .benefit-list li:before {
            content: "✓";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .sponsor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .sponsor-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .sponsor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .headline-card {
            grid-column: 1 / -1;
            /* Span all columns */
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 768px) {
            .headline-card {
                flex-direction: row;
            }

            .headline-card .sponsor-header {
                width: 30%;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .headline-card .sponsor-body {
                width: 50%;
            }

            .headline-card .sponsor-footer {
                width: 20%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        .sponsor-header {
            padding: 15px;
            color: white;
            text-align: center;
        }

        .sponsor-header h3 {
            color: white;
            margin-bottom: 5px;
        }

        .sponsor-header p {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .community-header {
            background-color: var(--primary-color);
        }
        .bronze-header {
            background-color: var(--bronze);
        }

        .silver-header {
            background-color: var(--silver);
        }

        .gold-header {
            background-color: var(--gold);
            color: var(--dark-gray);
        }

        .gold-header h3 {
            color: var(--dark-gray);
        }

        .platinum-header {
            background-color: var(--platinum);
            color: var(--dark-gray);
        }

        .platinum-header h3 {
            color: var(--dark-gray);
        }

        .headline-header {
            background-color: var(--headline);
        }

        .headline-header h3 {
            font-size: 1.4rem;
        }

        .availability-tag {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 10px;
        }

        .sponsor-body {
            padding: 20px;
            background-color: white;
        }

        .sponsor-benefits {
            list-style-type: none;
            margin-bottom: 20px;
        }

        .sponsor-benefits li {
            padding: 8px 0;
            border-bottom: 1px solid var(--light-gray);
            position: relative;
            padding-left: 30px;
        }

        .sponsor-benefits li:before {
            content: "✓";
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

        .sponsor-benefits li.inactive {
            color: var(--medium-gray);
            text-decoration: line-through;
        }

        .sponsor-benefits li.inactive:before {
            content: "✗";
            color: var(--medium-gray);
        }

        .sponsor-footer {
            padding: 15px;
            text-align: center;
            background-color: var(--light-gray);
        }

        .headline-btn {
            color: white;
            background-color: var(--headline);
        }

        .headline-btn:hover {
            background-color: #6A1B9A;
        }

        .contact-section {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 8px;
            margin: 40px 0;
            text-align: center;
        }

        .contact-section h2 {
            margin-bottom: 15px;
        }

        .custom-options {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 30px 0;
            gap: 20px;
        }

        .stat-box {
            flex: 1;
            min-width: 200px;
            background-color: white;
            padding: 25px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }

        .form-container {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            font-size: 1rem;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }

        .form-col {
            flex: 1;
            padding: 0 10px;
            min-width: 250px;
        }

        .required-field::after {
            content: " *";
            color: #dc3545;
        }

        .text-center {
            text-align: center;
        }

        .success-message {
            display: none;
            background-color: #d4edda;
            color: #155724;
            border-radius: 4px;
            padding: 20px;
            text-align: center;
            margin-top: 20px;
        }

        .section-divider {
            height: 2px;
            background-color: var(--light-gray);
            margin: 40px 0;
        }

        .special-option-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .special-option-header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .special-option-header h4 {
            color: white;
            margin: 0;
        }

        .special-option-body {
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .special-option-body p {
            margin: 0;
            flex: 1;
        }

        .availability-badge {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-left: 10px;
            background-color: rgba(255, 255, 255, 0.2);
            white-space: nowrap;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .form-col {
                flex: 100%;
                margin-bottom: 20px;
            }

            .page-title h1 {
                font-size: 1.8rem;
            }

            .stat-box {
                min-width: 100%;
            }

            .sponsor-grid {
                grid-template-columns: 1fr;
            }

            .headline-card {
                flex-direction: column;
            }

            .headline-card .sponsor-header,
            .headline-card .sponsor-body,
            .headline-card .sponsor-footer {
                width: 100%;
            }

            .special-option-body {
                flex-direction: column;
                align-items: flex-start;
            }

        
        }