body {
            font-family: "Inter", sans-serif;
            background-color: #f0f2f5; /* Light gray background */
            color: #333;
            display: flex;
            flex-direction: column; /* Changed to column to stack hero and main container */
            justify-content: flex-start;
            align-items: center; /* Center content horizontally */
            min-height: 100vh;
            box-sizing: border-box;
        }
        /* Hero image styling */
        .hero-image {
            width: 100%;
            height: 250px; /* Fixed height for the hero image */
            
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px; /* Space between hero and main content */
            /* Removed border-radius */
            overflow: hidden; /* Ensure content doesn't spill */
            background-color: #ffca01; /* Updated background color */
        }
        /* Ensure responsive layout for main content */
        .main-container {
            display: flex;
            flex-direction: column;
            gap: 2rem; /* Space between sections */
            width: 100%;
            max-width: 1200px;
            padding: 0 20px 20px 20px; /* Add horizontal padding and bottom padding */
        }
        @media (min-width: 768px) {
            .main-container {
                flex-direction: row;
                align-items: flex-start;
            }
        }
        .quote-container {
            flex: 2; /* Takes more space than leaderboard */
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .leaderboard-container {
            flex: 1; /* Takes less space */
            min-width: 280px; /* Minimum width for leaderboard */
        }
        .quote-box {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px; /* More rounded corners */
            padding: 2rem; /* More padding */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Softer shadow */
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
            min-height: 180px; /* Ensure consistent height */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .quote-box:hover {
            transform: translateY(-5px); /* Lift effect on hover */
        }
        .quote-text {
            font-size: 1.25rem; /* Larger text for quotes */
            font-weight: 500;
            line-height: 1.6;
        }
        .leaderboard-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #f0f0f0;
        }
        .leaderboard-item:last-child {
            border-bottom: none;
        }
        .leaderboard-item span:first-child {
            font-weight: 500;
            color: #555;
        }
        .leaderboard-item span:last-child {
            font-weight: 600;
            color: #2563eb; /* Blue for votes */
        }
        .instructions {
            background-color: #e0f2fe; /* Light blue background */
            color: #0c4a6e; /* Darker blue text */
            border-left: 5px solid #38b2ac; /* Teal border */
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .header {
            font-size: 2.25rem; /* Larger header */
            font-weight: 700;
            color: #1a202c;
            text-align: center;
            margin-bottom: 1.5rem;
        }