
  h1 {
    font-size: 36px;
    font-weight: bold;
    color: #fff; /* optional: change color */
  }

  body {
    background-color: #111;
    font-family: 'Neuton', sans-serif;
    background-color: #01790d;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    }

/* Header */
header {
    background: #ffffff;
    color: #150220;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo {
    width: 200px;
    height: auto;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    background-color:#5098a3;
    padding: 15px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #80ff9f;
}

/* Sections */
.container {
    margin-top: 50px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

.section {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.text-content h2, .text-content h3, .text-content h4 {
    color: #5098a3;
    margin-top: 0;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
}

/* Form Styles */
.form-container {
    background-color: #7bd84c;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

input, textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
}

button {
    padding: 12px 25px;
    background: #38e273;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

button:hover {
    background: #7bd84c;
}

/* CTA Buttons */
.cta a {
    display: inline-block;
    background-color: #01790d;
    color: #000;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta a:hover {
    background-color: #7bd84c;
}

/* Footer */
footer {
    padding: 20px;
    background: #7bd84c;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

/* Headspace Section Above Nav */
#headspace {
    background-color: #ffffff; /* change to any color you like */
    text-align: left;
    padding: 20px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.headspace-container {
    max-width: 500px;
    margin: 0 auto;
}

/* ===================== */
/* MOBILE RESPONSIVENESS */
/* ===================== */
/* Mobile adjustments */
@media (max-width: 768px) {
    #headspace {
        padding: 15px 10px;
    }

    #headspace img {
        max-width: 80%;
    }

    #headspace p {
        font-size: 16px;
    }

    header {
        justify-content: center;
        padding: 20px;
    }

    .logo {
        width: 150px;
    }

    nav {
        flex-direction: column;
        gap: 5px;
        padding: 10px 0;
    }

    nav a {
        font-size: 16px;
    }

    .container {
        padding: 20px 10px;
    }

    .form-container {
        width: 100%;
    }

    input, textarea {
        max-width: 100%;
    }
}
