       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #efefef;
            color: #222;
            line-height: 1.8;
            padding-bottom: 55px;
        }

        .hero {

            min-height: 420px;

            background:
                rgb(0, 123, 255)
                url('../images/wg_antidoping.jpg') center/cover no-repeat;

            display: flex;
            justify-content: center;
            align-items: center;

            text-align: center;
            padding: 20px;
        }

        .hero h1 {

            color: white;
            font-size: 54px;

            font-family: "Times New Roman", serif;
            font-weight: 400;

            letter-spacing: 3px;
            text-transform: uppercase;
        }
        .container {

            width: 92%;
            max-width: 100%;
            position: relative;
            top: 65px;
            bottom: 40px;
            left: 20px;
            display: flex;
            gap: 32px;
            margin-bottom: 300px;

            align-items: flex-start;
        }


        .left-content {


            flex: 0 0 77%;

            background: white;

            padding: 50px 50px;

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }

        .left-content h2 {

            font-size: 28px;
            font-weight: 400;

            margin: 45px 0 20px;
        }

        .left-content p {


            font-size: 14px;
            color: #444;

            max-width: none;
        }


        .left-content a {

            color: #004a99;
            text-decoration: none;
        }

        .left-content a:hover {
            text-decoration: underline;
        }

        .sidebar {

            flex: 0 0 25%;

            
        }

        .sidebar-section {

            background: white;

            margin-bottom: 30px;

            padding: 18px 22px;

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }

        .sidebar-section a {

            display: block;

            text-decoration: none;
            color: #444;

            font-size: 20px;

            padding: 8px;


            transition:
                color 0.25s ease,
                padding-left 0.25s ease;
        }

        .sidebar-section a:hover {

            color: black;
            padding-left: 5px;
        }

.footer{

    background: url("../images/wg_footer.jpg");

    color:white;

    margin-top:70px;
    padding-top:50px;
}

.footer-logo{

    text-align:center;
    padding-bottom:20px;
}

.footer-logo img{

    width:300px;
}

.footer-nav-wrapper{

    padding:18px 20px;
}

.footer-nav{

    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:30px;
}

.footer-nav a{

    color:white;
    text-decoration:none;

    font-size:18px;

    text-transform:uppercase;
    letter-spacing:1px;

    transition:0.3s;
}

.footer-nav a:hover{

    opacity:0.7;
}

.social-wrapper{

    padding:25px 20px;
}

.social-nav{

    display:flex;
    justify-content:center;

    gap:30px;
}

.social-nav a{

    color:white;
    text-decoration:none;

    font-size:22px;

    transition:0.3s;

    display:flex;
    align-items:center;
    justify-content:center;
}

.social-nav a:hover{

    opacity:0.7;

    transform:translateY(-3px);
}
.social-nav a:hover{

    background:rgba(255,255,255,0.15);

    color:white;

    transform:translateY(-3px);
}

.footer-bottom{

    text-align:center;

    padding:20px;

    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-bottom p{

    color:#ddd;
    font-size:13px;
}


.cookie-bar{

    position:fixed;

    bottom:0;
    left:0;

    width:100%;

    background:#0d0d0d;
    color:white;

    padding:14px;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:10px;
    flex-wrap:wrap;

    z-index:999;
}

.cookie-bar button{

    border:none;

    padding:10px 16px;

    cursor:pointer;

    border-radius:3px;

    font-size:13px;

    transition:0.3s;
}

.cookie-bar button:hover{
    opacity:0.9;
}

.accept{

    background:#3ea44a;
    color:white;
}

.deny{

    background:#b73932;
    color:white;
}

.personalize{

    background:#e0e0e0;
    color:black;
}

        @media(max-width:900px) {

            .container {
                flex-direction: column;
            }

            .left-content,
            .sidebar {
                width: 100%;
                flex: 100%;
            }

            .sidebar {
                position: relative;
                top: 0;
            }

            .hero h1 {
                font-size: 34px;
            }

            .footer-nav {
                gap: 18px;
            }

            .left-content {
                padding: 30px;
            }
        }