* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #c2a078;
  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.background-container {
  width: 1000px;
  height: 600px;
  background: url("https://assets.simpleviewinc.com/simpleview/image/upload/c_limit,h_1200,q_75,w_1200/v1/clients/southpadretx/BF4D22BB_073E_4424_AC18_7F0006BC5C22_1_105_c_ad2c1732-ef53-4c57-a7b7-fee9aeec25d4.jpg")
    no-repeat center bottom;
  background-size: 110%;
  position: relative;
  border: 2px solid #654321;
  overflow: hidden;
  margin-bottom: 25%;
}
.content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  width: 80%;
  height: 400px;
  max-width: 600px;
  padding: 50px 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  justify-content: space-between;
  margin-top: 4%;
}
.logo-text {
  margin-bottom: 10px;
}
.company-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}
.subtitle {
  font-size: 1.1rem;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 10px;
}
.main-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  line-height: 1.4;
}
.main-text p {
  margin-bottom: 0;
}
.team-list {
  text-align: left;
  margin: 10px 0;
  list-style-type: disc;
  padding-left: 20px;
}
.team-list li {
  margin-bottom: 10px;
}
.orientation-link {
  margin: 20px 0;
  font-size: 1rem;
}
.orientation-link a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.orientation-link a:hover {
  text-decoration: underline;
}
.overlay-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 10px;
}
.footer-right a {
  color: #333;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
}
.footer-right a:hover {
  text-decoration: underline;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1024px) {
  body {
    padding: 75px;
  }
  .background-container {
    width: 100%;
    height: auto;
    min-height: 600px;
    background-size: cover;
  }
  
  .company-logo {
    max-height: 100px !important;
  }
}

@media screen and (max-width: 600px) {
  .content-overlay {
    width: 95%;
    /* max-width: 95%; */
    /* padding: 20px 15px; */
  }
  .main-text {
    padding: 0 10px;
  }
  .overlay-footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    margin-top: 10px;
  }
  .footer-right a {
    margin: 0 5px;
  }
}