body {
  font-family: sans-serif;
  background-color: #f9f5ec; 
  color: #4d3e34; 
  margin: 0;
  padding: 0;
}

header h1 {
  text-align: center;
  font-size: 50px;
  color: #3d2b1f;
  margin-top: 30px;
  margin-bottom: 20px;
}
nav {
  background-color: #c7cdbf;
  padding: 10px 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  display: inline-block;
  margin-right: 30px;
}

nav a {
  text-decoration: none;
  color: #3d2b1f;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
}

nav a:hover {
  background-color: #c8aa82;
}

main {
  padding: 0 40px;
  box-sizing: border-box;
}

main h2 {
  font-size: 24px;
  color: #3d2b1f;
  margin-bottom: 10px;
}

main p {
  font-size: 18px;
  color: #5C4033;
  line-height: 1.6;
}
.step-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.step-content p {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
  text-align: left;
  margin-right: 250px;
}

.step-content img {
  width: 100%;
  max-width: 368px;
  height: auto;
  border-radius: 10px;
}

.step-list {
  padding-left: 20px;
  margin-top: 20px;
}

.step-list li {
  margin-bottom: 10px;
}

.step-list a {
  text-decoration: none;
  color: #5c4033;
  font-weight: bold;
}

.step-list a:hover {
  color: #c8aa82;
}
.nav-arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin-top: 2em;
  padding: 0 10px;
}

.nav-arrows a {
  text-decoration: none;
  color: #5b3924; 
  font-weight: bold;
  font-size: 1.2em; 
}
.mailto-link {
  color: #5c4033;
  font-weight: bold;
  text-decoration: none;
}

.mailto-link:hover {
  color: #c8aa82;
}


