/* Contact QR Code Styling */
.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin: 8px 0;
    font-size: 18px;
    color: var(--text-primary);
}

.contact-info .phone {
    color: var(--text-secondary);
}

.qr-code-container {
    text-align: center;
}

.contact-qr {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.qr-hint {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Add stronger CTA */
.cta-buttons {
    margin: 40px 0;
}

.cta-button.primary {
    background: var(--artemed-blue);
    color: white;
    padding: 20px 48px;
    font-size: 20px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-button.primary:hover {
    background: var(--artemed-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 167, 204, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info {
        text-align: center;
    }
}