* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

@font-face {
    font-family: "Gellix";
    src: url('./font/Gellix-Regular.ttf');
}

body {
    font-family: 'Gellix', sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100vw;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
}

.auto-m {
    margin: 0 auto;
}

img {
    width: 100%;
    height: auto;
}

/* Header */
.header {
    background-color: #1a2332;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


.cta-button {
    background-color: #ffd700;
    color: #1a2332;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Win-Win Section */
.win-win {
    background-color: #f8f9fa;
    width: 100vw;
}

.win-win .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.win-win-content{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    padding: 40px;
}
.win-win-image {
    width: 50vw;
    height: auto;
}

.win-win-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2332;
}

.win-win-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

/* Impact Section */
.impact {
    background-color: white;
}

.impact-content {
    width: 48%;
    padding: 40px;
 
}

.impact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.impact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2332;
}

.impact-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.impact-image {
    width: 52%;
    height: auto;
}

.guarantee-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a2332;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.guarantee-amount {
    font-size: 2rem;
    color: #ffd700;
}

/* Winners Section */
.winners {
    background-color: #f8f9fa;
}

.winners .container {
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.winners-content {
    padding: 30px;
    width: 47vw;
}

.winners-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2332;
}

.winners-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}


.winners-image {
    width: 53vw;
    height: auto;
}

/* Footer */
.footer {
    background-color: #1a2332;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.bold {
    font-weight: 700;
    color: black
}

.buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.instructions {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #232020;
    color: #fff;
}

.instructions .inner {
    max-width: 80%;
    justify-content: center;
    text-align: center;
}

.inner h1 {
    font-weight: bolder;
    font-size: 24px;
}
 
.inner p {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .auto-m {
        margin: 0 auto;
    }

    .impact-content {
        width: 100%;
        padding: 20px;
 
    }

    .win-win-content{
        width: 100vw;
    }

    .win-win-image {
    width: 100vw;
    height: auto;
}

    .winners-image {
        width: 100vw;
        height: auto;

    }

    .impact-image {
        width: 100%;
        height: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a2332;
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .win-win .container,
    .impact .container,
    .winners .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .win-win-content h2,
    .impact-content h2,
    .winners-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .winners-images {
        grid-template-columns: repeat(2, 1fr);
    }

        .header .container {
        padding-left: 20px;
    }
    
    .footer .container {
        padding-left: 20px;
    }


}

.impact {
    width: 100vw;
}

.impact .container {
    width: 100vw;
}

@media (max-width: 480px) {
        body {
        overflow-x: hidden;
    }

        .win-win-image {
    width: 100vw;
    height: auto;
}
.winners-content {
    padding: 30px;
    width: 100%;
}

.instructions .inner {
    max-width: 90%;
    justify-content: center;
    text-align: center;
}


.buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.auto-m {
    margin: 0 auto;
}

    .win-win-content{
        width: 100vw;
    }


    .impact-content {
        width: 100%;
        padding: 20px;
 
    }



    .winners-image {
        width: 100%;
        height: auto;

    }

    .impact-image {
        width: 100vw;
        height: auto;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .footer .container {
        padding-left: 20px;
    }


}
