body {
  font-family: "Times New Roman", serif;
  margin: 0;
  padding: 0;
  background-color: #a4a4a4;
  color: black;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #282b28;
  color: #ffffff;
  padding: 8px;
  width: 100%;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  padding-left: 20px;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding-right: 20px;
}

.contact a:hover {
  text-decoration: underline;
}

/* Navigation */
nav {
  background-color: #282b28;
  padding: 10px 0;
  width: 100%;
}

nav p {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 10px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: white;
  text-decoration: underline;
}
/* Banner Section */
.banner {
  width: 100%;
  height: 100px;
  background-image: url("../img/got.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 5px black;
}

.banner h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

.banner p {
  font-size: 18px;
}

/* Contact Page Styles */
.contact-main {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-main h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-main p {
  text-align: center;
  margin-bottom: 2rem;
  color: #242424;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.8rem;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #555;
}

footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  background-color: #222;
  color: white;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}
