body {
      font-family: Cambria;
      background-color: #6c9a8b;
      margin: 0;
      padding: 0;
      color: #1e140b;
      font-size: 18px;
    }
header {
    background: #feefdd;
    color: #7c0b2b;
    /*padding: 40px;*/
    text-align: center;
    font-size: 20px;
    height: 150px;               /* set the height */
    display: flex;              /* enable flexbox */
    justify-content: center;    /* horizontal centering */
    align-items: center;        /* vertical centering */
}
.menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.item {
    margin: 0 15px;
}

.item a {
    text-decoration: none;
    color: #1e140b;
    font-weight: bold;
}

.item a:hover {
    color: #6c9a8b;
}

button {
    background-color: #6c9a8b;
    color: #1e140b;
    border: none;
    font-family: Cambria;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

button:hover {
    background-color: #ee7674;
}
.navbar {
      display: flex;
      background: transparent;
      justify-content: flex-end;
      border-radius: 30px;
      padding: 10px 20px;
      margin: 0 auto;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
}
.navbar-content {
    display: flex;
    gap: 20px;
    background: #feefdd;
    padding: 10px 20px;
    border-radius: 30px;
    align-items: center;
    font-size: 18px;
}
footer {
      text-align: center;
      padding: 15px;
      background: #EAAFA3;
      color: #7c0b2b;
      margin-top: 20px;
}
.report-container {
      max-width: 600px;
      margin: 40px auto 40px;
      background: #feefdd;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
label {
      display: block;
      margin-top: 10px;
      font-weight: bold;
}
input, select, textarea {
      width: 100%;
      padding: 8px;
      margin-top: 5px;
      border-radius: 6px;
      border: 2px solid #1e140b;
      background: #feefdd;
}
.review-output {
      margin-top: 30px;
      padding: 15px;
      background: #feefdd;
      border-radius: 8px;
      border: 1px solid #ddd;
}
.tabs {
  display: flex;
  margin-bottom: 15px;
}
.tab-button {
  flex: 1;
  padding: 10px;
  border: none;
  background: #ddd;
  cursor: pointer;
}
.tab-button.active {
  background: #004700;
  color: white;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.slider {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider img {
  width: 100%;
  display: none;
}

.slider img.active {
  display: block;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.slider button.prev { left: 5px; }
.slider button.next { right: 5px; }
