/* Variabler för enkel styling */
:root {
    --background-color: #ffffff;
    --text-color: #333333;
    --accent-color: #48A9A6;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    font-family: var(--font-family);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
  }
  
  .logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 2rem;
  }
  
  .textblock h1 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
  }
  
  .textblock p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
  }