body {
    background-color: #000000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

header {

    padding: 20px;
    background-color: #000000ee;
    text-align: left;
    display: flex;
    align-items: center;
    height: 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

header img {
    max-width: 100%;
    width: auto;
    height: 80px;
    margin: 0;
    vertical-align: middle;
    display: inline-block;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    
}

nav a {
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    text-transform: uppercase;
}

nav a:hover {
    background-color: #ff6600;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    color: #ff6600;
    font-size: 28px;
    margin-bottom: 20px;
}


.code-list {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.code-list:last-child {
    margin-bottom: -20px;
}



.code-list h2 {
    color: #ff6600;
    margin-bottom: 15px;
}

.code-list ul {
    list-style-type: none;
    padding: 0;
    align-items: center;
}

.code-list ul li {
    background-color: #444;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.copy-btn {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.copy-btn:hover {
    background-color: #e65c00;
    transition: 0.3s;
}

.container1 {
    flex-direction: row;
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap; /* Ensure content wraps if it's too wide */
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 auto;
    gap: 4vw; /* Use a viewport unit (2% of the viewport width) */
    margin-bottom: 30px;
}


.right-column {

    flex: 1;
    gap: 4vw; /* Add gap property here */
}

.left-column {

    flex: 2;
    gap: 4vw; /* Add gap property here */
    

}



/* How to Redeem Section */
.how-to-redeem {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    flex: 2; /* Take more space */
    width: 100%; /* Let it fill its available space */
    
    
}

.how-to-redeem h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.how-to-redeem h2 {
    color: #ff6600;
    margin-bottom: 20px;
}


.how-to-redeem img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* More Stories Section */
.more-stories {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
}

.more-stories h3 {
    color: #ff6600;
    margin-bottom: 20px;
}

.more-stories ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.more-stories ul li {
    margin-bottom: 10px;
}

.more-stories ul li a {
    color: #fff;
    text-decoration: none;
}

.more-stories ul li a:hover {
    color: #ff6600;
    transition: 0.3s;
}



.how-to-redeem,
.more-stories {
    margin: 0; /* Remove unwanted margins */
    
}
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    clear: both;
}

footer p {
    margin-bottom: 10px;
}

.footer1 {
    background-color: #111;
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0px -2px 10px rgba(255, 255, 255, 0.1);
}

/* Vertical Footer links */
.footer1 a {
    color: #ccc;
    display: block;
    margin: 15px 0;
    text-decoration: none;
}

.footer1 a:hover {
    color: #fff;
}

/* Footer container */
.footer-container1 {
    max-width: 1200px;
    margin: 0 auto;
}




@media (min-width: 600px) {
    h1 {
        font-size: 2.5em;
    }

    .code-list ul li {
        font-size: 1em;
        padding: 15px;
        align-items: center;
    }

    .copy-btn {
        padding: 10px 15px;
    }

    .container1 {
        flex-direction: row;
        display: flex;
    }

    .how-to-redeem,
    .more-stories {
        margin-bottom: 0;
    }
}

@media (min-width: 900px) {
    h1 {
        font-size: 2.5em;
    }

    .code-list ul li {
        font-size: 1em;
        padding: 20px;
        align-items: center;
    }

    .copy-btn {
        padding: 15px 20px;
    }

    .container {
        max-width: 1400px;
    }

    .how-to-redeem,
    .more-stories {
        margin: 0; /* Remove unwanted margins */
        
    }

    .left-column {
        flex: 2;
        max-width: 70%; /* Ensure it doesn't take too much space */
    }

    .right-column {
        flex: 1;
        max-width: 30%; /* Ensure it fits beside the left-column */
    }

    .container1 {
        flex-direction: row;
        display: flex;
    }
}

@media (max-width: 600px) {
    nav {
        
        display: none;
    }


    .code-list ul li {
        flex-direction: column;
        text-align: center;
    }

    .copy-btn {
        margin-top: 10px;
        width: 100%;
    }

    .how-to-redeem,
    .more-stories {
        margin: 0; /* Remove unwanted margins */
        
    }

    .container1 {
        flex-direction: column;
        display: flex;
    }



    .how-to-redeem {
        margin: 0 auto;
        max-width: 91%; /* match the size of the left-column */
    }

    .right-column {
        width: 100%;
        max-width: 100%;
    }

    

    
    

}

@media (601px <= width <= 900px) {
    .how-to-redeem,
    .more-stories {
        margin: 0 auto; /* Remove unwanted margins */
        max-width: 94%;
    }

    .left-column {
        position: center;
    }

    .container1 {
        flex-direction: column;
        display: flex;
    }

    .right-column {
        width: 100%;
        max-width: 100%;
    }


   
}

@media (901px <= width <= 1200px) {
    .how-to-redeem,
    .more-stories {
        margin: 0 auto; /* Remove unwanted margins */
        max-width: 94%;
    }


    .container1 {
        flex-direction: row;
        display: flex;
        gap: 20px;
    }

    .right-column {
        width: 100%;
        max-width: 100%;
    }


   
}

@media (1201px <= width <= 1500px) {
    .how-to-redeem,
    .more-stories {
        margin: 0 auto; /* Remove unwanted margins */
        max-width: 96%;
    }


    .container1 {
        flex-direction: row;
        display: flex;
        gap: 20px;
    }


    .more-stories {
        height: 100%;

    }



   
}   

