/* CONTACT PAGE */

body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  position: fixed;
  width: 94%;
  top: 0;
  background: black;
  z-index: 1000;
}

.logo-link {
  text-decoration: none;
  color: white;
}

.logo-link h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 3px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

nav a:hover,
nav a.active {
  opacity: 0.6;
}

/* CONTACT SECTION */
.contact-section {
  padding: 150px 60px;
  text-align: center;
}

.contact-section h2 {
  font-size: 50px;
  margin-bottom: 40px;
}

.contact-card {
  background: #111;
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #222;
  border-radius: 6px;
}

.contact-card p {
  margin: 12px 0;
  font-size: 18px;
  opacity: 0.85;
}

.contact-card strong {
  color: white;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  opacity: 0.6;
  margin-top: 80px;
}
