/* === Global layout === */
body {
    background: #161616;
    color: #eaeaea;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  h2, h3 {
    color: #4da3ff;
    text-transform: uppercase;
  }
  
  p {
    color: #d0d0d0;
    font-size: 1rem;
  }
  
  /* === Header (matchar SCB-hemsidan) === */
  .site-header {
    background: #111;
    border-bottom: 2px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  .logo:hover {
    color: #4da3ff;
  }
  
  nav a {
    color: #ddd;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #4da3ff;
    transition: width 0.3s ease;
  }
  nav a:hover {
    color: #4da3ff;
  }
  nav a:hover::after {
    width: 100%;
  }
  
  /* === Service sections === */
  .main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .service {
    background: #1f1f1f;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  .service:hover {
    transform: scale(1.01);
  }
  .service h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .service img {
    display: block;
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
  }
  .subservice {
    background: #252525;
    border-left: 4px solid #4da3ff;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 25px 0;
  }
  .subservice img {
    border-radius: 8px;
    margin: 15px 0;
    width: 100%;
  }
  
  /* === Footer === */
  .site-footer {
    background: #111;
    text-align: center;
    padding: 20px;
    color: #999;
    border-top: 1px solid #333;
  }
  
  /* === Responsive === */
  @media (max-width: 768px) {
    .site-header .container {
      flex-direction: column;
    }
    nav a {
      margin: 10px;
    }
    .service {
      padding: 25px;
    }
  }
  