    .main-container {
        max-width: 1200px;
        margin: 0 auto;
    }




    /* --- Section Styling --- */
    .activity-group {
        margin-bottom: 40px;
    }

    .activity-group h2 {
        font-size: 2em;
        color: #2c3e50;
        /* Dark slate blue */
        border-bottom: 3px solid #0156A4;
        /* Accent blue */
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    /* --- Responsive Grid for Cards --- */
    .cards-grid {
        display: grid;
        /* Creates a responsive grid that fits as many 320px columns as possible */
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }

    /* --- Card Styling --- */
    .card {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 5px solid #0156A4;
        /* Blue accent color */
        display: flex;
        flex-direction: column;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }

    .card h3 {
        color: #004a7f;
        margin-bottom: 15px;
        font-size: 1.4em;
    }

    .card p {
        line-height: 1.7;
        margin-bottom: 10px;
        font-size: 0.95em;
    }

    .card p:last-child {
        margin-bottom: 0;
    }

    .card p strong {
        color: #555;
        font-weight: 600;
    }

    /* --- Special Styling for the large Sports Card --- */
    .card-large {
        /* On larger screens, make this card span the full width of the grid */
        grid-column: 1 / -1;
    }

    .sports-details {
        margin-top: 15px;
    }

    .sports-details h4 {
        margin-bottom: 15px;
        color: #34495e;
        font-size: 1.1em;
    }

    .sport-group {
        margin-bottom: 20px;
        padding-left: 20px;
        border-left: 3px solid #e9ecef;
    }

    .sport-group:last-child {
        margin-bottom: 0;
    }

    .sport-group p {
        margin-bottom: 5px;
    }

    .sport-group ul {
        list-style-position: inside;
        padding-left: 5px;
        font-size: 0.9em;
        color: #666;
        margin-top: 8px;
    }

    .sport-group ul li {
        margin-bottom: 4px;
    }

    hr.divider {
        border: 0;
        height: 1px;
        background-color: #eee;
        margin: 20px 0;
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {

        .activity-group h2 {
            font-size: 1.6em;
        }

        /* Stack cards into a single column on smaller screens */
        .cards-grid {
            grid-template-columns: 1fr;
        }

        /* No need for the large card to span full width if it's already in a single column */
        .card-large {
            grid-column: auto;
        }
    }

    /* --- Responsive Grid for Cards --- */
    .activity-grid {
        display: grid;
        /* Create a responsive grid with columns at least 280px wide */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }

    /* --- Card Styling --- */
    .card {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 5px solid #0156A4;
        /* Blue accent color on top */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Pushes the button to the bottom */
        min-height: 180px;
        /* Ensures cards have a consistent minimum height */
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .card h3 {
        color: #2c3e50;
        margin-bottom: 20px;
        /* Creates space between title and button */
        font-size: 1.3em;
    }

    /* --- Button Styling --- */
    .view-button {
        display: inline-block;
        background-color: #0156A4;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        text-align: center;
        transition: background-color 0.3s ease;
        margin-top: auto;
        /* Aligns button to the bottom */
    }

    .view-button:hover {
        background-color: #2980b9;
    }

    /* Group for cards with multiple buttons */
    .button-group {
        display: flex;
        gap: 10px;
    }

    /* --- Initiatives Section Styling --- */
    .initiatives-section {
        background-color: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .initiatives-section h2 {
        font-size: 1.8em;
        color: #2c3e50;
        margin-bottom: 20px;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 10px;
    }

    .initiatives-section ul {
        list-style-type: none;
        /* Removes default bullet points */
        padding-left: 0;
    }

    .initiatives-section li {
        margin-bottom: 12px;
        font-size: 1.05em;
    }

    .initiatives-section li:last-child {
        margin-bottom: 0;
    }

    .initiatives-section a {
        color: #0156A4;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .initiatives-section a:hover {
        color: #0156A4;
        text-decoration: underline;
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {
        body {
            padding: 15px;
        }

        .page-header h1 {
            font-size: 2em;
        }

        .initiatives-section h2 {
            font-size: 1.5em;
        }
    }

    h2 {
        font-size: 2.2rem;
        font-weight: 600;
        border-left: 4px solid transparent !important;
        padding-left: 15px;
        margin-bottom: 1.5rem;
    }