/* Base styles */
        body {
            font-family: 'Noto Serif Display', serif;
            line-height: 1.6;
        }

        /* Section heading styles */
        .section-heading {
            text-align: center;
            /* margin-bottom: 2rem; */
        }

        .section-heading h2 {
            font-size: 1.3rem;
            color: white;
            padding: 0 0;
            border-radius: 42px 50px 0 0;
            display: inline-block;
            margin: 0;
            /* font-weight: 600; */
            width: 30%;
            height: 47px;
            line-height: 45px;
            font-family: 'Poppins', serif;
        }

        /* Different colors for different sections */
        .host-heading { background-color: #232a7a; }
        .partners-heading { background-color: #232a7a; }
        .lead-supporters-heading { background-color: #00a49d; }
        .platinum-heading { background-color: #868ea3; }
        .gold-heading { background-color: #c09f2d; }
        .silver-heading { background-color: #c6c6c6; }
        .bronze-heading { background-color: #7c5e2f; }
        .supports-heading { background-color: #232a7a; }

        /* Section container styles */
        .sponsor-section {
            margin-bottom: 3rem;
        }

        .sponsor-container {
            border: 2px solid #e5e5e575;
            border-radius: 10px;
            padding: 2rem;
            background-color: #fafafa;
        }

        /* Logo container styles */
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            height: 150px;
            background-color: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .logo-container:hover {
            transform: translateY(-5px);
        }

        .logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section-heading h2 {
                font-size: 1.4rem;
                border-radius: 42px 42px 0 0;
                width: 100%;
/*                padding: 10px 20px;*/
            }
            
            .sponsor-container {
                padding: 1rem;
            }
            
            .logo-container {
                height: 120px;
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 576px) {
            .section-heading h2 {
                font-size: 1.2rem;
                border-radius: 42px 42px 0 0;
                width: 100%;
/*                padding: 8px 15px;*/
            }
            
            .logo-container {
                height: 100px;
            }
        }

        /* Special adjustments for different tiers */
        .host-section .logo-container {
            height: 180px;
        }

        .lead-supporters-section .logo-container {
            height: 160px;
        }

        .bronze-section .logo-container,
        .supports-section .logo-container {
            height: 130px;
        }

        @media (max-width: 768px) {
            .host-section .logo-container {
                height: 140px;
            }
            
            .lead-supporters-section .logo-container {
                height: 120px;
            }
            
            .bronze-section .logo-container,
            .supports-section .logo-container {
                height: 100px;
            }
        }