/* General Reset and Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Times New Roman', Times, serif;
  color: #663333;
  line-height: 1.6;
  background-color: #FFF7DE;
  text-align: center;
}

h2 {
  font-family: 'Georgia', serif;
  color: #663333;
  font-size: 24px;
  margin: 20px 0;
}

a {
  color: #330099;
  text-decoration: underline;
}

a:visited {
  color: #6600CC;
}

a:active {
  color: #FF0000;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8B0000;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #663333;
  margin: 10px;
}

.cta-button:hover {
  background-color: #663333;
  color: #FFF;
}

.secondary-cta {
  display: inline-block;
  padding: 10px 20px;
  color: #330099;
  text-decoration: underline;
  font-weight: bold;
  margin: 10px;
}

.secondary-cta:hover {
  color: #6600CC;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Navigation */
.nav-bar {
  margin: 20px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-links li a {
  font-weight: bold;
  font-size: 16px;
}

.nav-links li a:hover {
  color: #FF0000;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #663333;
}

/* Form Styling */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #663333;
  font-family: 'Times New Roman', Times, serif;
  font-size: 16px;
}

textarea {
  height: 100px;
  resize: vertical;
}

button.cta-button {
  cursor: pointer;
}

/* Form Message */
#form-message {
  margin: 10px 0;
  color: #663333;
  font-weight: bold;
}

/* Images Section */
.images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  hoop: .nav-links {
    display: none;
    flex-direction: column;
    background-color: #FFF7DE;
    padding: 20px;
    position: absolute;
    top: 100px;
    width: 100%;
    left: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin: 10px auto;
  }

  .images {
    flex-direction: column;
    align-items: center;
  }

  h2 {
    font-size: 20px;
  }
}