        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #35353c;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 210px;
        }

        .menu-button {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 7px 14px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .menu-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .menu-dropdown {
            position: fixed;
            top: 70px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 0px 0px 7px 7px;
			border-top: 2px solid #75cf96;
            padding: 10px;
            display: none;
            min-width: 200px;
            z-index: 1000;
        }

        .menu-dropdown.active {
            display: block;
        }

        .menu-dropdown a {
            display: block;
            padding: 12px 16px;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            transition: background 0.2s ease;
            font-weight: 500;
        }

        .menu-dropdown a:hover {
            color:#75cf96;
        }

        .logo {
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px (0, 0, 0, 0.3);
            font-size: 5em;
			margin-bottom: 0em;
			font-family: "Anton", sans-serif;
			font-weight: 400;
			font-style: normal;
			color: #75cf96;
        }

        .search-container {
            width: 100%;
            max-width: 800px;
            margin-bottom: 30px;
        }

        .search-box {
            display: flex;
        }

        .search-input {
			width: 100%;
			padding: 1em 0.7em 0.7em 1.5em;
			border: 2px solid #75cf96;
			border-radius: 25px 0 0 25px;
			font-size: 1.2em;
			background: #51505a;
			color: #9da5a3;
        }

        .search-input:focus {
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
        }

        .search-button {
            padding: 0.5em 1em;
			border: 2px solid #75cf96;
			border-left: none;
			background: #75cf96;
			color: #fff;
			border-radius: 0 25px 25px 0;
			cursor: pointer;
			padding: 16px 32px;
            
        }

        .search-button:hover {
			background: #85e4a8;
        }

        .info-boxes {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 600px;
        }

        .info-box {
            background: fff;
            padding: 10px 30px;
            border-radius: 16px 0 0 16px;
            text-align: center;
            min-width: 200px;
			display:flex;
			flex-wrap: wrap;
            justify-content: center;
			align-items:center;
			border:1px solid black;
        }

        .counter-number {
            font-size: 30px;
            font-weight: bold;
            color: #75cf96;
        }

        .counter-label {
            font-size: 12px;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
			padding:0 0 0 10px;
        }

        .transparency-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px 30px;
            border-radius: 0px 16px 16px 0px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            text-decoration: none;
            color: #75cf96;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
			border:1px solid black;
        }

        .transparency-link:hover {
			background-color: rgba(117, 207, 150, 0.8);
			color:#fff;
        }

        @media (max-width: 600px) {
            .logo {
                height: 150px;
                font-size: 60px;
            }

            .search-box {
                flex-direction: column;
            }

            .info-boxes {
                flex-direction: column;
                width: 100%;
            }

            .info-box, .transparency-link {
                width: 100%;
            }
		}

        @media (max-width: 875px) {
			.search-container {
				display:none;
			}
			
            .info-boxes {
				display:none;
            }

            .info-box, .transparency-link {
				display:none;
            }

			.body {
				padding: 0px;
			}
        }








