/* layout.css */

 .flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 200px;
  padding-top: 130px; /* 80 + 50 */
  padding-left: 40px;
  padding-right: 60px;
  transform: translateX(0px); /* move both 30px toward center */
}

@media (max-width: 900px) {
  .flex-wrapper {
    flex-direction: column;
    align-items: center;
  }
}


.container {
  flex: 1 1 200px;
  max-width: 550px;
  background-color: rgba(255, 255, 255, 0.65);
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  color: #333333;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

  
  .logo {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 250px;
    height: auto;
  }
  
  .logo img {
    width: 100%;
    height: auto;
  }
  
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 1rem;
  color: white;
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}



.container,
.info-box {
  flex: 1 1 200px;
  max-width: 550px;
  background-color: rgba(255, 255, 255, 0.65);
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  color: #333333;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}


.info-box h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222222;
  font-weight: 600;
}

.info-box p,
.info-box li {
  font-size: 0.95rem;
  color: #333333;
}

.info-box ol {
  padding-left: 20px;
  margin-bottom: 1rem;
}


/* Sailing side selection styles */
.checkbox-side-group {
  margin-top: 10px;
}

.checkbox-side-options {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkbox-side-options label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
}
