.hawaiian-box {
  background-color: #FFF; /* Deep Pacific blue */
  padding: 3px;
  border: 2px solid #4285f4;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  max-width: 100%;
  margin: 24px 0;
  text-align: left;
}

.hawaiian-box img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.link-box {
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  color: #000;
  box-sizing: border-box;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}


  .link-box:hover {
    background-color: #f0f0f0; /* Softer gray */
    box-shadow: 0 2px 8px rgba(44, 110, 165, 0.1); /* Gentle lift */
  }

  .link-box a {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
    .text-link {
    display: inline-block;
    margin-bottom: 6px;
    color: #2c6ea5;
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
    transition: color 0.3s ease;
  }

  .text-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #2c6ea5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .text-link:hover {
    color: #1b4f82;
  }

  .text-link:hover::after {
    transform: scaleX(1);
  }

  @media screen and (max-width: 500px) {
    .link-box {
      padding: 16px;
      font-size: 0.95em;
    }

    .text-link {
      font-size: 1em;
    }
  }
  
          .map-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 0.75rem; /* Rounded corners for the map */
        }
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
