body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f5f5f5;
    display: grid;
    grid-template-columns: auto auto;
    padding: 5vw;
    gap: 2vw;
    align-items: center;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 100%;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.qr-section {
    flex-shrink: 0;
}

.qr-wrapper {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.content {
    flex-grow: 1;
}

h1 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.6;
}

.link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.link:hover {
    color: #1d4ed8;
}

@media (max-width: 1070px) {
    body {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .card {
        flex-direction: column;
        width: 90%;
        text-align: center;
    }
}