body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  border-bottom: 1px solid #C1440E;
}

.nav-name {
  font-size: 1.2rem;
  color: black;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}

.contact-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 0 24px;
}

.contact-title {
  font-size: 3rem;
  color: #1A0A2E;
  margin-bottom: 8px;
}

.contact-sub {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input, textarea {
  font-family: Georgia, serif;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid #d0c8c0;
  border-radius: 4px;
  width: 100%;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #C1440E;
}

button {
  background-color: #FF4500;
  color: white;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
}

button:hover {
  background-color: #C1440E;
}

.footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid #C1440E;
  font-size: 0.85rem;
  color: black;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .image-container {
    padding: 20px;
  }
  .aboutbook {
    padding: 20px;
    padding-top: 0px;
  }
  .navbar {
    padding: 16px 24px;
  }
}