/* ======================================
   1. Basic Reset & Grundlegende Einstellungen
   ====================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
  }
  
  body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #f7fafc; /* entspricht Tailwind bg-gray-100 */
    color: #333;
  }
  
  /* ======================================
     2. Container & Layout
     ====================================== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* ======================================
     3. Header & Navigation
     ====================================== */
  header {
    background-color: #1e3a8a; /* Tailwind bg-blue-900 */
    color: #fff;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  
  .logo {
    font-size: 2rem; /* Tailwind text-2xl */
    font-weight: bold;
  }
  
  .logo span {
    background-color: #fff;
    color: #1e3a8a;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
  }
  
  /* Navigation: erst ab 768px sichtbar */
  nav {
    display: none;
  }
  @media (min-width: 768px) {
    nav {
      display: flex;
      gap: 1.5rem; /* space-x-6 */
      align-items: center;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: text-decoration 0.3s ease;
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Spezieller Link in Gelb */
    nav a.yellow {
      color: #facc15; /* Tailwind text-yellow-400 */
    }
  }
  
  /* Suchbereich rechts im Header */
  .header-search {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .header-search input {
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.25rem;
  }
  
  .header-search button {
    background-color: #374151; /* Tailwind bg-gray-700 */
    color: #fff;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
  }
  
  /* ======================================
     4. Hero Section
     ====================================== */
  .hero {
    position: relative;
    background-color: #1d4ed8; /* Tailwind bg-blue-700 */
    color: #fff;
    text-align: center;
    padding: 5rem 0; /* py-20 */
  }
  
  .hero h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: bold;
  }
  
  .hero p {
    font-size: 1.125rem; /* text-lg */
    margin-top: 0.5rem;
  }
  
  /* Search Bar im Hero */
  .hero .search-bar {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
  }
  
  .search-container {
    background-color: #fff;
    color: #111827; /* Tailwind text-gray-900 */
    display: flex;
    border-radius: 9999px; /* rounded-full */
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .search-container span {
    padding: 0.75rem;
    border-right: 1px solid #e5e7eb;
  }
  
  .search-container input {
    padding: 0.75rem;
    border: none;
    outline: none;
  }
  
  .search-container input:first-of-type {
    width: 15rem; /* w-60 */
  }
  
  .search-container input:last-of-type {
    width: 10rem; /* w-40 */
    border-left: 1px solid #e5e7eb;
  }
  
  .search-container button {
    background-color: #111827; /* Tailwind bg-gray-900 */
    color: #fff;
    padding: 0.75rem 1rem;
    border: none;
    cursor: pointer;
  }
  
  /* ======================================
     5. Features Section
     ====================================== */
  .features {
    background-color: #1f2937; /* Tailwind bg-gray-800 */
    color: #fff;
    padding: 2.5rem 0; /* py-10 */
  }
  
  .features .features-container {
    display: flex;
    justify-content: center;
    gap: 3rem; /* space-x-12 */
    flex-wrap: wrap;
  }
  
  .feature {
    text-align: center;
  }
  
  .feature .icon {
    font-size: 3rem; /* text-5xl */
  }
  
  .feature h3 {
    margin-top: 0.5rem;
    font-size: 1.25rem;
  }
  
  /* ======================================
     6. Pourquoi LegalPlace Section
     ====================================== */
  .legalplace {
    background-color: #fff;
    padding: 4rem 0; /* py-16 */
    text-align: center;
  }
  
  .legalplace h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
  }
  
  .legalplace p {
    font-size: 1.125rem;
    margin-top: 1rem;
    color: #374151;
  }
  
  .services {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 4rem; /* space-x-16 */
    flex-wrap: wrap;
  }
  
  .service {
    text-align: center;
    max-width: 300px;
  }
  
  .service .icon-container {
    background-color: #dbeafe; /* Tailwind bg-blue-100 */
    color: #2563eb; /* Tailwind text-blue-600 */
    padding: 1.5rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .service h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
  }
  
  .service p {
    margin-top: 0.5rem;
    color: #374151;
  }
  
  /* ======================================
     7. FAQ Section
     ====================================== */
  .faq {
    background-color: #fff;
    padding: 4rem 0;
  }
  
  .faq h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
  }
  
  .faq .faq-container {
    margin: 2rem auto 0;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .faq-item {
    background-color: #f3f4f6; /* Tailwind bg-gray-100 */
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  .faq-item button {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #111827;
  }
  
  .faq-item .faq-answer {
    display: none;
    margin-top: 0.75rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  /* ======================================
     8. Utility & Responsive Anpassungen
     ====================================== */
  .text-center {
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      text-align: center;
    }
    nav {
      margin-top: 1rem;
    }
    .features .features-container,
    .services {
      flex-direction: column;
      gap: 2rem;
    }
  }
  