body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("../images/mauzzo-bg-image.png");
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 80%;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.wrapper img {
    width: 300px;
    height: auto;
}

.wrapper h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 70px;
    padding: 0;
    margin: 0;
}

.wrapper p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    color: #333;
}

.notify-form a {
  background-color: #25D366; /* WhatsApp green */
  text-transform: uppercase;

    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    border-radius: 32px;
    cursor: pointer;
    letter-spacing: 5px;
    transition: background-color 0.3s ease, letter-spacing 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.notify-form a:hover {
    background-color: #128C7E; /* Darker green on hover */
    letter-spacing: 8px;
}

/* ...existing code... */

.social-icons {
    text-align: center;
    margin-bottom: 10px;
}

.social-icons a {
    color: #333;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #25D366; /* WhatsApp green for consistency */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .wrapper {
        width: 90%;
    }

    .wrapper img {
        width: 250px;
    }

    .wrapper h1 {
        font-size: 50px;
    }

    .wrapper p {
        font-size: 18px;
        line-height: 28px;
    }

    .notify-form a {
        padding: 14px 28px;
        font-size: 14px;
        letter-spacing: 3px;
    }

    .notify-form a:hover {
        letter-spacing: 6px;
    }

    .social-icons a {
        font-size: 22px;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .wrapper img {
        width: 200px;
    }

    .wrapper h1 {
        font-size: 40px;
    }

    .wrapper p {
        font-size: 16px;
        line-height: 24px;
    }

    .notify-form a {
        padding: 12px 24px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .notify-form a:hover {
        letter-spacing: 4px;
    }

    .social-icons a {
        font-size: 20px;
        margin: 0 6px;
    }
}