h1 {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

.map {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  margin-bottom: 50px;
}


h3 {
  text-align: center;
  line-height: 1.5;
  color: #ffffff;
  font-size: 23px;
  font-weight: 400;
}


.tables {
  max-width: 440px;
  margin: 12px;
  background: rgba(255,255,255,0.05); /* lighter grey */
  overflow: hidden;
  
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.tables th {
  text-align: left;
  color: #fff;
  font-size: 18px;
  font-weight: 600;

  padding: 12px 16px;
  background: rgba(102,14,14,0.9);
}

.tables td {
  color: #ddd;
  font-size: 15px;
  line-height: 2;

  padding: 12px 16px;
}

.maplink {
  width: calc(100% - 40px);
  max-width: 440px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 12px 16px;

  display: inline-flex;
  align-items: center;

  color: #fff;
  text-decoration: none;
  gap: 10px;
  font-weight: 600;

  background-color: #500a0a;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);

  transition: 0.2s;
}

.maplink i {
  font-size: 18px;
  color: #ffd7d7;
}

.maplink:hover {
  transform: scale(1.02);
  background-color: #5d0c0c;
}

.contact {
  width: calc(100% - 40px);
  max-width: 440px;
  margin-top: 15px;
  margin-bottom: 30px;
  padding: 14px;

  background: rgba(255,255,255,0.04); /* lighter grey */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.contact h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;

  margin-bottom: 10px;
}

.contact .row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.contact label {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 6px;
}

.contact input, textarea {
  color: #fff;
  font-size: 15px;

  padding: 8px 10px;
  background: rgba(255,255,255,0.05); /* lighter grey */
  border: 1px solid rgba(255,255,255,0.07);
  
  border-radius: 6px;
  outline: none;
  box-sizing: border-box; /* prevent textarea from going offscren */
}

.contact input:focus, textarea:focus {
  border-color: rgba(102,14,14,0.9); 
  box-shadow: 0 3px 10px rgba(102,14,14,0.6); /* glow */
}

.contact textarea {
  resize: vertical; /* No sideways scalig */
  min-height: 80px;
  max-height: 320px;
  overflow: auto;
}

.contact .required {
  color: #ff6b6b;
  font-weight: 700;

  margin-left: 4px;
}

.contact .optional {
  color: #9aa0a6;
  font-size: 13px;
  font-weight: 400;

  margin-left: 6px;
}

.submit {
  font-family: "Noto Serif", serif;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  
  background: #5a0b0b;
  padding: 10px 16px;
  display: inline-block;

  border-radius: 8px;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);

  transition: 0.2s;
}

.submit:hover {
  transform: scale(1.03);
  background-color: #760d0d;
}


.right {
  text-align: right;
}

/* Small screen */
@media (max-width: 360px) {
  .map-link {
    width: calc(100% - 30px);
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .contact {
    width: calc(100% - 30px);
    margin-top: 15px;
     margin-bottom: 30px;
    padding: 12px;
  }

  .contact input, textarea {
    font-size: 14px;
  }
}