/* Variabler */
:root {
    --primary: #2C4B42;
    --accent: #A7B5A1;
    --background: #F5F3EF;
    --text: #1E2A26;
    --white: #FFFFFF;
  }
  
  /* Global styling */
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
  }
  
  a {
    text-decoration: none;
  }
  
  h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Tillbaka pil */
  .back-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }
  
  .back-button:hover {
    background-color: var(--accent);
  }
  
  .back-button:focus {
    outline: none;
  }
  
  /* Tjänstesektion */
  .service-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  
  .service-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
  }
  
  /* Tjänstrubrik */
  h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 3rem;
  }
  
  /* Tjänsttext */
  p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    max-width: 900px;
  }
  
  /* Buttons */
  .button, .cta-button {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .button:hover, .cta-button:hover {
    background-color: var(--accent);
    color: var(--text);
  }
  
  /* Responsiv justering */
  @media (max-width: 768px) {
    .service-section {
      padding: 3rem 1rem;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.6rem;
    }
  
    .back-button {
      font-size: 1rem;
      padding: 0.5rem 1rem;
    }
  
    p {
      font-size: 1rem;
    }
  }
  
  /* Footer */
  footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
  }
  
  footer p {
    font-size: 0.9rem;
  }
  