/* Global CSS Variables specific to the trusted section */
.trusted-section {
    --background: #646464; /* Arka plan rengi */
    --foreground: #ffffff; /* Yazı rengi */
    --card: #f8f9fa; /* Kart arka plan rengi */
    --card-foreground: #212529; /* Kart yazı rengi */
    --border: #e0e0e0; /* Kenarlık rengi */
    --radius: 0.5rem; /* Kenarlık yuvarlama */
  }
  
  .trusted-section .section {
    width: 100%;
    padding: 3rem 1rem;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .trusted-section .container {
    display: grid;
    align-items: center;
    justify-content: center;
    /* gap: 2rem; */
    max-width: 1200px;
    width: 100%;
  }
  
  .trusted-section .text-center {
    text-align: center;
  }
  
  .trusted-section .title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .trusted-section .description {
    margin: 0 auto;
    max-width: 700px;
    color: var(--foreground);
    font-size: 2rem;
    line-height: 1.5;
  }
  
  .trusted-section .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .trusted-section .section {
      padding: 6rem 1.5rem;
    }
  
    .trusted-section .title {
      font-size: 7rem;
    }
  
    .trusted-section .logos {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }
  
  @media (min-width: 1024px) {
    .trusted-section .section {
      padding: 8rem 2rem;
    }
  
    .trusted-section .logos {
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
    }
  }
  
  .trusted-section .logo-item {
    display: flex;
    max-width: 120px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .trusted-section .logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .trusted-section .logo-item img {
    width: 240px;
    height: 120px;
    object-fit: contain;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--card);
  }