* {
      margin: 0;
      padding: 0;
}

body {
      font-family: Arial, sans-serif;
      background-image: url("lace.jpg");
      background-repeat: repeat;
      background-position: top left;
}

#wrapper {
      width: 80%;
      max-width: 1100px;
      margin: 2rem auto;
      background-color: white;
      border-radius: 8px;
}

.skip-link {
      position: absolute;
      top: 0;
      left: 0;
      transform: translateY(-100%);
      background: black;
      color: white;
      text-decoration: none;
}

.skip-link:focus {
      transform: translateY(0);
}

.site-header {
      text-align: center;
      padding: 2rem 1rem;
      background-color: #ffe3cd;
}

.tagline {
      font-size: 1rem;
      color: #555;
}


.nav {
      background: #fbcba7;
}

.nav-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      list-style: none;
}

.nav a {
      display: block;
      padding: 1rem;
      text-decoration: none;
      font-weight: bold;
      color: #222;
}

.nav a:hover,
.nav a:focus {
      background: #bfa6a0;
      color: #fff;
}

.visually-hidden {
      height: 1px;
      width: 1px;
      overflow: hidden;
      position: absolute;
}

.content-section {
      display: flex;
      gap: 15px;
      padding: 20px;
}

.content-section-image img {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
}

.content-section-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap:25px;
}

.form-section {
      padding: 30px;
      background: #ffe3cd;
}

.form-group {
      margin-bottom: 1rem;
}

label {
      display: block;
      margin-bottom: 5px;
}

input {
      width: 100%;
      padding: 5px;
      border-radius: 5px;
      border: 1px solid #6b4f4f;
}

button {
      padding: 12px;
      border: none;
      border-radius: 10px;
      background: #6b4f4f;
      color: white;
      cursor: pointer;
}

button:hover,
button:focus {
      background: #4b3832;
}

.time-section {
      padding: 20px;
}

table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 15px;
}

th,
td {
      padding: 10px;
      border: 1px solid #ccc;
      text-align: left;
}

th {
      background: #ffe3cd;
}

tbody tr:nth-child(even) {
      background-color: #ffeee0;
}

caption {
      margin-bottom: 10px;
      font-weight: bold;
}

footer {
      text-align: center;
      padding: 25px;
      background: #fbcba7;
}

@media (max-width: 768px) {
      .content-section {
            flex-direction: column;
            align-items: center;
      }

      .content-section-image img {
            max-width: 100%;
      }
}