/* Gåsström Healing Arts - Core Styles */
:root {
    --bg-color: #f9fbfa;
    --text-primary: #2c3e50;
    --text-secondary: #607d8b;
    --accent: #8fb9a8; /* Calming sage green for healing arts */
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-primary);
}

.container {
    padding: 2rem;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.divider {
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    margin: 2rem auto;
}