.accordion-dark .accordion-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    margin-bottom: 8px;
    border-radius: 5px;
  }

  .accordion-dark .accordion-button {
    background-color: #1a1a1a;
    color: #f1f1f1;
    box-shadow: none;
  }

  .accordion-dark .accordion-button::after {
    filter: invert(1);
  }

  .accordion-dark .accordion-button:not(.collapsed) {
    background-color: #2c2c2c;
    color: #fff;
  }

  .accordion-dark .accordion-body {
    background-color: #1a1a1a;
    color: #ccc;
  }

section.work-together {
    position: relative;
    background: radial-gradient(ellipse at center, #222 0%, #000 100%);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
  }

  section.work-together::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }

  section.work-together .container {
    position: relative;
    z-index: 2;
  }

   