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

body {
  background-color: black;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer Section */
footer {
  width: 100%;
  background-color: #141414;
  color: gray;
  padding: 2rem 2rem 3rem 2rem;
  margin-top: 2rem;
}

footer .contact-section {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-text a {
  color: gray;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-section ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(4, auto);
  gap: 1rem 2rem;
}

.contact-section ul li {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.contact-section ul li a {
  text-decoration: none;
  color: gray;
}

.contact-section p {
  font-size: 0.9rem;
  color: gray;
  margin-top: 1rem;
}
