.mushngo-page-template {
    background-color: #000;
    color: #fff;
    font-family: 'Gustavo', sans-serif;
    padding: 50px 0;
}

.mushngo-page-template strong {
    font-family: 'Gustavo', sans-serif;
    font-weight: bold;
}

.mushngo-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.mushngo-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mushngo-mockup {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.mushngo-right {
    flex: 1;
    padding-left: 50px;
}

.mushngo-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Pilat', sans-serif;
}

.mushngo-right .highlight {
    color: #9B59B6;
}

.mushngo-right .description {
    font-size: 1.1rem;
    margin-top: 20px;
}

.features {
    margin: 30px 0;
}

.features p {
    font-size: 1.2rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.features .plus {
    color: #9B59B6;
    font-size: 1.5rem;
    margin-right: 15px;
    font-weight: bold;
}

.exclusive-offer {
    border: 1px solid #9B59B6;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.exclusive-offer h3 {
    text-align: center;
    color: #9B59B6;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Gustavo', sans-serif;
}

.exclusive-offer p {
    text-align: center;
    font-size: 1.1rem;
}

.exclusive-offer .code {
    background-color: #9B59B6;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #9B59B6;
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {

    .cta-button {
        width: auto;
    }

    .mushngo-page-template {
        padding: 40px 20px;
    }
    
    .mushngo-container {
        flex-direction: column;
        text-align: center;
    }

    .mushngo-mockup {
        max-width: 320px;
    }

    .mushngo-right {
        padding-left: 0;
        padding-top: 50px;
    }

    .mushngo-right h2 {
        font-size: 2rem;
    }

    .features p {
        justify-content: center;
    }
} 