/* Contact Cards Styling - Fix for white text on white background */

.contact-section .contact-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-section .contact-card .card-content {
  padding: 1.5rem;
  color: white;
}

.contact-section .contact-card h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-section .contact-card p,
.contact-section .contact-card strong {
  color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.contact-icon svg {
  color: var(--primary);
  width: 1.5rem;
  height: 1.5rem;
}
