:root {
  --main-background-color: #f6f8f3;
}

* {
  margin: 5px;
  padding: 0;
  box-sizing: border-box;
  /* background-color: var(--main-background-color); */
}

body {
  font-family: system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  /* background: #f8f9fa; */
  color: #333;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  /*border-bottom: 1px solid #e9ecef;*/
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.menu {
  font-size: 18px;
}

.main-wrapper {
  flex: 1;
  display: flex;
  background: white;
  gap: 20px;
  padding: 20px;
}

.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title-section {
  /* background: #f8f9fa; */
  color: #797877;
  padding: 40px;
  text-align: start;
  /*border: 1px solid #e9ecef; */
}

.title-section h1 {
  font-size: 70px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}
h4 {
  font-weight: normal;
}

.main-content {
  /* background: #f8f9fa; */
  color: #797877;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  font-size: 24px;
  /* border: 1px solid #e9ecef;*/
  text-align: justify;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
}
button {
  background-color: #d8a39a;
  color: white;
  padding: 10px 20px 10px 20px;
  border-radius: 20px;
  border: none;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
}
h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
}
.right-section {
  width: 300px;
  background: #e9ecef;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid #dee2e6;
}

.sub-content {
  /*background: #f8f9fa;*/
  color: #797877;
  padding: 60px;
  text-align: left;
  text-align: justify;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  /*border-top: 1px solid #e9ecef;*/
}
h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
}
.footer {
  background: #f8f9fa;
  color: #333;
  padding: 30px;
  text-align: center;
  font-size: 24px;
  border-top: 1px solid #e9ecef;
}

nav a {
  color: #718dae;
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  margin: 0 10px;
}

nav a:hover {
  text-decoration: underline;
}
