:root {
    --max-width: 720px;
    --padding: 2rem;
    --text-color: #222;
    --accent-color: #0077cc;
    --bg-color: #f9f9f9;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--padding);
  }
  
  .container {
    max-width: var(--max-width);
    width: 100%;
    text-align: left;
  }
  
  h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .launch-info {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 1.5rem;
  }
  
  .email {
    font-size: 0.95rem;
    color: #555;
    margin-top: 2rem;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  #map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
  }
  
  #map {
    width: 100%;
    height: 100%;
  }
  
    #locate-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    z-index: 1000;
  }
  
  #locate-btn:hover,
  #locate-btn:focus {
    background: #005999;
    outline: none;
  }
  