.qr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 100%;
    max-width: 140px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    object-fit: cover;
}

.qr-item p {
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.qr-item p a {
    color: #2456c2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.qr-item p a:hover {
    color: #2456c2;
    text-decoration: underline;
}

.contact-qr {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.section-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 50px 0 30px 0;
}

@media (max-width: 768px) {
    .qr-grid {
        grid-template-columns: 1fr;
    }
    .qr-item img {
        max-width: 160px;
    }
}