/* General styles */
:root {
    --primary-color: #111827;
    --secondary-color: #4b5563;
    --light-bg: #f4f7fb;
    --border-color: #e5e7eb;
    --contact-bg: #f8fafc;
    --white: #ffffff;
    --spacing-unit: 1rem;
  }
  
  /* Top contact bar */
  .top-bar {
    background-color: var(--contact-bg);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem; /* 14px */
    padding: 0.5rem 0;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
  }
  
  .contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem; /* 24px */
    padding: 0.25rem 0;
  }
  
  .contact-info img {
    width: 1rem; /* 16px */
    height: 1rem;
    object-fit: contain;
  }
  
  .contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem; /* 6px */
    color: var(--secondary-color);
    transition: color 0.2s ease;
  }
  
  .contact-info span:hover {
    color: var(--primary-color);
  }
  
  /* Header main */
  .header {
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0; /* 20px */
  }
  
  .logo img {
    height: 3.125rem; /* 50px */
    width: auto;
    transition: transform 0.2s ease;
  }
  
  .logo:hover img {
    transform: scale(1.03);
  }
  
  /* Hero section */
  .hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 4rem 1rem; /* 64px 16px */
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem; /* 4px */
    background: linear-gradient(90deg, #3b82f6, #10b981);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-content h1 {
    font-size: 2.5rem; /* 40px */
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem; /* 16px */
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1.25rem; /* 20px */
    color: var(--secondary-color);
    max-width: 44rem; /* 700px */
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-info {
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .header-content {
      padding: 1rem 0;
      flex-direction: column;
      gap: 1rem;
    }
    


    .hero-section {
        background: linear-gradient(135deg, #f4f7fb 0%, #ffffff 100%);
        padding: 2rem 1rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50vh; /* Anpassa höjd efter behov */
      }
      
      .hero-content {
        max-width: 800px;
        margin: 0 auto;
      }
      
      .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }
      
      .hero-content p {
        font-size: 1.25rem;
        line-height: 1.6;
      }



  }
  
  @media (max-width: 480px) {
    .contact-info {
      flex-direction: column;
      gap: 0.5rem;
      align-items: center;
    }
    

  }