.card {
    border: 2px solid #1e40af;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1);  
    margin-bottom: 1rem;
}

.card h3 {
    color: #1e40af;
    border-bottom: 2px solid #1e40af;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.grid-cols-1 md:grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .grid-cols-1 md:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-gray-600 {
    color: #6b7280;
}

.font-medium {
    font-weight: 500;
}

.badge {
    background-color: #1e40af;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    display: inline-block;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    border: 1px solid #1e40af;
    background-color: #1e40af;
    color: white;
}

.btn:hover {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}

.text-blue-600 {
    color: #2563eb;
}

.hover\:underline:hover {
    text-decoration: underline;
}


.business-card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.header_card {
    text-align: center;
    border-bottom: 2px solid #1e40af;
}

.name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.title_card {
    font-size: 18px;
}

.contact-info {
    margin: 15px 0;
}

.info-item {
    display: flex;
    margin-bottom: 8px;
}

.label {
    font-weight: bold;
    width: 120px;
    color: #555;
}

.value {
    flex: 1;
    color: #333;
}

.address {
    margin: 10px 0;
    line-height: 1.4;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}