* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body, html {
  height: 100%;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  border-bottom: 1px solid #ddd;
}
.logo img {
  height: 40px;
}
.nav-options {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-options a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn.white {
  background-color: white;
  color: #333;
  border: 1px solid #ccc;
}
.btn.maroon {
  background-color: #780650;
  color: white;
}
main {
  display: flex;
  height: calc(100vh - 140px); /* adjust for header and footer */
}
.left-image {
  flex: 1;
}
.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.right-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 120px;
  background-color: #fff;
}
.right-content h1 {
  font-size: 36px;
  margin-bottom: 3px;
  font-weight: bold;
}
.right-content h2 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 520;
}
.right-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  width: 380px;
}

.action-buttons {
  display: flex;
  gap: 15px;
}
footer {
  background-color: #000;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left img {
  height: 28px;
  filter: brightness(0) invert(1);
}
.footer-center {
  display: flex;
  gap: 30px;
  align-items: center;
}
.footer-center span {
  color: white;
  font-size: 12px;
}
.footer-center a {
  color: white;
  text-decoration: none;
  font-size: 12px;
}
.footer-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: white;
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
}
.social-icon.facebook {
  align-items: flex-end;
  padding-bottom: 2px;
}