.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-code-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    display: inline-block;
}

#qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

#qr-code img {
    display: block;
    border-radius: 5px;
}

/* Mobile clickable QR code */
.mobile-clickable {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-clickable:active {
    transform: scale(0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.tap-instruction {
    text-align: center;
    margin: 20px 0 0 0;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .qr-code-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .qr-code-container {
        padding: 20px;
    }
    
    #qr-code canvas,
    #qr-code img {
        max-width: 220px !important;
        max-height: 220px !important;
    }
    
    .tap-instruction {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-top: 15px;
    }
}

