* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 50rem;
    width: 100%;
}

.container-support {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 50rem;
    width: 100%;
}

.logo {
    width: 100%;
    max-width: 31.25rem;
    min-width: 12.5rem;
    height: auto;
}

.feedback-text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    max-width: 37.5rem;
}

.feedback-text a {
    color: #0066cc;
    text-decoration: none;
}

.feedback-text a:hover {
    text-decoration: underline;
}

h1 {
    align-self: flex-start;
    font-size: 1.75rem;
    color: #333;
    margin-top: 1rem;
}

h2 {
    align-self: flex-start;
    font-size: 1.5rem;
    color: #333;
    margin-top: 1rem;
}

h3 {
    align-self: flex-start;
    font-size: 1.25rem;
    color: #333;
    margin-top: 1rem;
}

.support-content {
    align-self: flex-start;
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
}

/* Mobile adjustments */
@media (max-width: 48em) {
    .container {
        gap: 1.5rem;
    }

    .logo {
        max-width: 21.875rem;
    }

    .feedback-text {
        font-size: 1rem;
    }

    .support-content {
        font-size: 1rem;
    }
}

@media (max-width: 30em) {
    .logo {
        max-width: 17.5rem;
    }

    .feedback-text {
        font-size: 0.9375rem;
    }

    .support-content {
        font-size: 0.9375rem;
    }
}
