body {
      margin: 0;
      padding: 0;
      background-color: #fff;
      font-family: "Century Gothic", sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 100vh;
      color: #711c46;
    }
    
    @media (min-width: 1200px) {
        svg {
            max-width:500px; /* smaller on wide desktops */
        }
    }
    @media (min-width: 1600px) {
        svg {
            max-width: 450px; /* even smaller on very big screens */
        }
    }

    header, main {
      text-align: center;
      padding: 0.2rem;
    }
    footer {
        text-align: center;
        padding: 1.5rem;
    }
    
    header img {
      max-width: 200px;
      margin-top: 1rem;
    }
    
    header h1 {
        margin-top: 0.5rem;  /* reduce gap */
        margin-bottom: 0;    /* optional, in case you want less space below too */
    }

    h1, p {
        margin: 0; /* reset default margins */
    }

    main {
        flex: 1;
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* not fully centered */
        margin-top: 1rem; /* adjust as needed */
    }

    main p {
      margin-top: 0rem;
      margin-bottom: 1.5rem; /* controlled spacing under intro text */
      max-width: 610px;
      width: 90%;
      line-height: 1.6;
      text-align: justify;
    }

    a {
      color: #1d3557;
      text-decoration: none;
      font-weight: bold;
    }

    a:hover, a:focus {
      color: #005f73; /* optional: subtle hover contrast */
      text-decoration: underline;
    }

    .title {
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 1.5rem;
    }

	.subtitle {
	  font-size: 1.5rem;
      font-weight: bold;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }
    .map-container {
      display: flex;
      justify-content: center;
      width: 100%;
    }
    svg {
      width: 100%
      max-width: 600px;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    @media (min-width: 1200px) {
        svg {
            max-width:500px; /* smaller on wide desktops */
        }
    }
    @media (min-width: 1600px) {
        svg {
            max-width: 450px; /* even smaller on very big screens */
        }
    }
    .region {
      cursor: pointer;
      fill: #fff;
      stroke: #711c46;
      stroke-width: 2;
      transition: fill 0.2s, stroke 0.2s;
    }
    .region:hover {
      fill: #711c46;
      stroke: #711c46;
    }

    .button-container {
      width: 90%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 0 1rem;
    }

    .warp-button {
      display: block;
      width: 100%;
      box-sizing: border-box;
      text-align: center;
      text-decoration: none;
      border: 2px solid #711c46;
      border-radius: 25px;
      padding: 1rem;
      font-weight: bold;
      color: #711c46;
      transition: all 0.2s ease-in-out;
    }

    .warp-button:hover {
      background-color: #711c46;
      color: #fff;
    }