* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
  background-color: #191919;
  color: white;
  width: 100vw;
}

nav {
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navList {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20vw;
  gap: 2vh;
  margin-right: 25vw;
}

.navList a:hover {
  color: #7c2607;
}

.navList a {
  text-decoration: none;
  color: white;
}

.navButton {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5vw;
  margin-left: 4vw;

}

.navButton a:hover {
  color: #802706db;
}

.navButton a {
  padding: 7px;
  border: white solid 1px;
  border-radius: 25px;
  color: #ffffff;
  text-decoration: none;

}

.div1 {
  margin-top: 8vh;
  padding: 0px 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.div1_left {
  width: 80vw;
  text-align: left;
  font-size: 10vw;
  font-weight: 700;
  font-family: 'Times New Roman', Times, serif;
  line-height: 7vw;
}

.div1_right {
  margin-left: 22vw;
  border-left: 1px solid #ffffff;
  padding-left: 3vw;
}

.div1_right h2 {
  color: #b07724;
  font-weight: 400;
}

.div1_right h3 {
  font-weight: 300;
}

.div2 img {
  margin-top: 8vh;
  padding: 2vw;
  width: 100vw;
  height: 85vh;
}

.div3 {
  width: 95vw;
  margin-top: 7vh;
  gap: 5vh;

}

.div3_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5vh;
  padding-left: 4vw;
  gap: 20px;
}

.text {
  width: 50vw;

}

.image img {
  width: 45vw;
  height: 75vh;

}

.text .gt {
  color: #a4abb4;
  font-weight: 300;
  font-size: 15px;
}

.text .bt {
  color: white;
  font-size: 40px;
  font-weight: 400;
}

.text .mt {
  color: white;
  font-size: 20px;
  font-weight: 500;
}

.text .st {
  color: white;
  font-size: 20px;
  font-weight: 300;
}

.footer {
  background-color: #121212;
  padding: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Left Section */
.footer-left {
  flex: 1;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.logo {
  width: 24px;
  height: 24px;
  background-color: #22c55e;
  /* Green logo color */
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
}

.tagline {
  color: #22c55e;
  margin-bottom: 16px;
}

.subscription-form {
  display: flex;
  align-items: center;
  gap: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 12px;
  margin-bottom: 4px;
}

.input-group input {
  border: none;
  border-bottom: 1px solid #555;
  background: none;
  color: white;
  padding: 8px 4px;
  font-size: 14px;
  outline: none;
}

.input-group input::placeholder {
  color: #777;
}

.submit-button {
  padding: 8px 16px;
  border: 1px solid #22c55e;
  color: #22c55e;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: #22c55e;
  color: white;
}

/* Right Section */
.footer-right {
  display: flex;
  flex: 2;
  justify-content: space-between;
  gap: 40px;
}

.footer-left,
#link-column1,
#link-column2 {
  flex: 2;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-column li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: #6d0505 solid 1px;
  padding: 4px 8px;
  /* Adjust padding as needed */
  margin: 2px 0;
  /* Adjust margin as needed */
}

.link-column li:hover {
  color: #22c55e;
  /* Change to desired hover color */
}

.icon {
  color: #777;
}