.contact-section {
  max-width: 800px;
  width: 90%;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--card-color);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  line-height: 1.8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

input[type="email"] {
  max-width: 400px;
  width: 100%;
}

textarea {
  width: 100%;
  min-height: 206px;
  resize: vertical;
}

form button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: var(--link-color);
  color: #000;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background-color: #55bbeb;
  transform: translateY(-2px);
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.contact-links a {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.contact-links a:hover {
  color: var(--link-color);
}

