@charset "UTF-8";

:root {
  --primary-color: #2196f3;
  --secondary-color: #1976d2;
  --text-color: #333;
  --background-color: #fff;
  --gray-light: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.contact-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 90%;
  height: auto;
  margin: 50px auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  color: var(--text-color);
  background-color: var(--background-color);
  transform: translateY(-5px);
}

.contact-card i {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.icon {
  width: 48px;
  height: auto;
}
