body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(to bottom, #e0f7fa 0%, #a5d6a7 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('hiking.jpg') center center/cover no-repeat;
    filter: blur(12px) brightness(0.8);
    z-index: -2;
    pointer-events: none;
}

h1 {
    color: #2e7d32;
    text-align: center;
    margin-top: 32px;
    font-size: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 2px 6px #b2dfdb;
}

p {
    color: #37474f;
    text-align: center;
    margin: 16px auto 32px auto;
    max-width: 600px;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(46,125,50,0.08);
}

arcgis-embedded-map {
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(56, 142, 60, 0.18);
    border: 3px solid #388e3c;
    overflow: hidden;
    background: #fff;
}

/* Optional: Add a subtle leaf/forest pattern to the background */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/leaf.png');
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}