        html {
              overflow-y: scroll;
        }

        body {
            font-family: 'Garamond', serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            width: 100%;
            max-width: 100%;
        }
        
        /* Header Styles */
        header {
            background-color: #004225;
            color: white;
            padding: 7px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
            margin-right: 15%;
        }
        
        /* New Logo and Title Styles */
        .logo-title {
            display: flex;
            align-items: center;
            margin-left: -30px;            
        }
        
        .header-logo {
            height: 30px; /* Adjust the height as needed */
            margin-right: 40px;
            border-radius: 50%; /* This makes the image circular */
        }
        
        header h1 {
            margin: 0;

        }

        header h1 a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            margin-left: -30px;
        }

        .header-nav {
            display: flex;
            align-items: center;
        }

        .header-nav a {
            font-size: 16px;
            color: white;
            text-decoration: none;
            margin-left: 25px;
        }

        .header-nav a:hover {
            text-decoration: underline;
        }

        /* Footer Styles */
        footer {
            background-color: #004225;
            color: white;
            padding: 10px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            box-sizing: border-box;
            margin-right: 15%;
        }

        footer p {
            margin: 0;
        }

        .footer-nav {
            display: flex;
            align-items: center;
        }

        .footer-nav a {
            font-size: 16px;
            color: white;
            text-decoration: none;
            margin-left: 20px;
        }

        .footer-nav a:first-child {
            margin-left: 0;
        }

        .footer-nav a:hover {
            text-decoration: underline;
        }

        /* Main Section Styles */
        main {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            margin-right: 15%;
        }

        /* Main Content Styles */
        .main-content {
            margin-right: 15%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: stretch;
            width: 100%;
            position: relative;
        }

        /* Left Content Styles */
        .left-content {
            margin-left: 20%;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-right: 20px;
            justify-content: flex-start;
            z-index: 2;
            position: relative;
        }

        /* Search Bar Styles */
        .search-bar {
            display: flex;
            align-items: center;
            width: 60%;
            margin-bottom: 20px;
        }

        .search-bar input[type="text"] {
            padding: 10px;
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 5px 0 0 5px;
            flex: 1;
        }

        .search-bar button {
            padding: 10px 20px;
            background-color: #004225;
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }

        /* General Content Wrapper */
        .content {
            box-sizing: border-box;
            padding: 20px;
        }
        
        /* Section Block with Heading */
        .link-section {
            margin-bottom: 20px;
        }
        
        .link-section h2 {
            background-color: #500000;
            color: white;
            padding: 20px;
            text-align: center;
            margin: 0 0 10px 0;
        }
        
        /* Flexible Link Grid */
        .link-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: -5px;
        }
        
        .link-column {
            flex: 1;
            min-width: 200px;
        }
        
        .link-column ul {
            list-style: none;
            padding: 0px;
        }
        
        .link-column li {
            margin-bottom: 10px;
        }
        
        /* Styling the links */
        .link-column a {
            font-size: 16px;
            color: #004225;
            text-decoration: none;
        }
        
        .link-column a:hover {
            text-decoration: underline;
        }

        /* Medal Marketplace Content Styles */
        .medal-marketplace-content {
            margin-right: 0%;
            text-align: center;
            color: #004225;
        }

        .medal-marketplace-content h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .medal-marketplace-content p {
            font-size: 1.2em;
            line-height: 1.5;
            margin: 10px 0;
        }

        .medal-marketplace-content a {
            font-size: 20px;
            color: #004225;
            text-decoration: none;
        }

        .medal-marketplace-content  a:hover {
            text-decoration: underline;
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        .modal-content {
            background-color: white;
            margin: 10% auto;
            padding: 20px;
            border-radius: 5px;
            width: 50%;
            max-height: 70vh;
            overflow-y: auto;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        .modal-body {
            max-height: 50vh;
            overflow-y: auto;
        }
        .close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
        }
        
        
        
        /* Right Image Styles */
        .right-image {
            width: 50%;
            margin-left: 70%;
            margin-top: -50px; /* Adjust as needed for overlap */
            position: absolute;
            top: 25%; /* Adjust as needed for overlap */
            left: 0;
            z-index: 1;
        }

        .right-image img {
            width: 100%;
            height: auto;
            max-height: none;
            opacity: 1; /* Adjust opacity if needed */
        }

        .left-image {
            width: 65%;
            margin-left: 0;
            margin-top: -50px; /* Adjust as needed for overlap */
            position: absolute;
            top: 10%; /* Adjust as needed for overlap */
            left: -22%;
            z-index: 1;
        }

        .left-image img {
            filter: grayscale(100%);
            
            width: 100%;
            height: auto;
            max-height: 50%;
            opacity: 0.1; /* Adjust opacity if needed */
        }

        /* Right 15% Advertising Space */
        .advertising-space {
            position: fixed;
            top: 0; /* Adjusted to start a little higher */
            right: 0;
            width: 15%;
            padding: 20px;
            text-align: center;
            background-color: #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px; /* Adjusted gap between ads */
            height: calc(100%); /* Adjusted height accordingly */
            overflow-y: auto;
            box-sizing: border-box;
        }

        /* Removed unnecessary margin-top */

        /* Ad Container Styles */
        .ad-container {
            width: 95%;
            /* height: 125px;  Adjust the height as needed */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: #f0f0f0; /* Optional: to ensure consistent background */
            border: 1px solid #ccc;  /* Optional: to outline the container */
        }

        .ad-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Ads Title Image Styles */
        .ads-title {
            width: 85%; /* Maintain existing width */
            margin-top: 70px; /* Adjust this value to push the image lower */
        }

        /* Responsive Styles */
        @media (max-width: 746px) {
            header {
                flex-direction: column;
                align-items: flex-start;
                padding: 10px;
                margin-right: 0;
            }

            .logo-title {
                display: flex;
                align-items: center;
                margin-left: 0px;            
            }
            
            .header-logo {
            height: 30px; /* Adjust the height as needed */
            margin-right: 15px;
            border-radius: 50%; /* This makes the image circular */
            object-fit: cover; /* Ensures the image fits well within the circle */    
            }
            
            header h1 {
                margin: 0;
    
            }
    
            header h1 a {
                color: white;
                text-decoration: none;
                font-size: 24px;
                margin-left: 0px; 
            }
                
            .header-nav {
                margin-top: 10px;
            }

            .header-nav a {
                margin-left: 0;
                margin-right: 15px;
            }

            footer {
                flex-direction: column;
                align-items: flex-start;
                margin-right: 0;
            }

            .footer-nav {
                margin-top: 10px;
            }

            main {
                padding: 10px;
                margin-right: 0;
            }

            .main-content {
                margin-right: 0;
                flex-direction: column;
                align-items: center;
                padding: 10px;
            }

            .left-content {
                margin-left: 0;
                width: 100%;
                padding-right: 0;
                align-items: center;
                margin-bottom: 20px;
            }

            .right-image {
                width: 100%;
                margin-left: 0;
                margin-top: -50px; /* Adjust as needed for overlap */
                position: absolute;
                top: 20%; /* Adjust as needed for overlap */
                left: 0;
                z-index: 1;
            }

            .right-image img {
                width: 100%;
                height: auto;
                max-height: none;
                opacity: 0.1; /* Adjust opacity if needed */
            }
            .left-image {
                width: 40%;
                margin-left: -50px;
                margin-top: -50px; /* Adjust as needed for overlap */
                position: absolute;
                top: 65%; /* Adjust as needed for overlap */
                left: 0;
                z-index: 1;
            }
    
            .left-image img {
                /* filter: grayscale(100%); */
                width: 100%;
                height: auto;
                max-height: 50%;
                opacity: 0.1; /* Adjust opacity if needed */
            }            
            /* .left-image {
                display: none;
            } */

            .medal-marketplace-content {
                z-index: 2;
                position: relative;
            }

            .medal-marketplace-content h2 {
                font-size: 2em;
            }

            .medal-marketplace-content p {
                font-size: 1em;
            }

            .modal {
                display: none;
                position: fixed;
                z-index: 1000;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
            }
            .modal-content {
                background-color: white;
                margin: 10% auto;
                padding: 20px;
                border-radius: 5px;
                width: 80%;
                max-height: 70vh;
                overflow-y: auto;
                box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
                position: relative;
            }
            .modal-body {
                max-height: 50vh;
                overflow-y: auto;
            }
            .close {
                position: absolute;
                top: 10px;
                right: 15px;
                font-size: 24px;
                font-weight: bold;
                cursor: pointer;
            }

            .advertising-space {
                display: none;
            }

            .search-bar {
                width: 100%;
                max-width: 300px;
            }

            .search-bar input[type="text"] {
                font-family: garamond;
                width: 100%;
                margin-right: 0px;
            }

            .search-bar button {
                font-family: garamond;
                padding: 10px;
                max-width: 70px;
            }
        }
