body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
}

.navbar {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
}

.navbar img {
    height: 40px;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.container img {
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
}

.container h1 {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
}

.container p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 1080px;
    margin: 0 auto 20px auto;
    color: #333;
    text-align: center; /* Center the text */
}

.additional-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px auto;
    color: #333;
    text-align: center; /* Center the additional text */
}

.button-container {
    margin-top: 20px;
}

.button-container a {
    background-color: #EA1266;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.footer {
    text-align: center;
    padding: 20px 20px;
    background-color: white;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
    .container img {
        max-width: 80%;
    }

    .container h1 {
        font-size: 22px;
    }

    .container p, .additional-text {
        font-size: 16px;
    }

    .button-container a {
        font-size: 16px;
        padding: 10px 20px;
    }
}