
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background-color: rgb(205,49,50); /* 🔴 پس‌زمینه کل صفحه */
      color: #333;
    }

    .header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px 20px;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      border-bottom: 1px solid #eee;
    }

    .logo {
      width: 250px;
      height: auto;
      border-radius: 10px;
    }

    h2 {
      text-align: center;
      color: #fff;
      font-size: 24px;
      margin-top: 40px;
      margin-bottom: 10px;
    }

    .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 30px 40px;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
    }

    .brand-box {
      background-color: #f2f2f2; /* 🩶 پس‌زمینه طوسی */
      padding: 25px;
      text-align: center;
      border: 1px solid #ddd;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      height: 120px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .brand-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
      background-color: #e6e6e6;
    }

    .brand-box a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: inherit;
      width: 100%;
      height: 100%;
    }

    .brand-box img {
      max-width: 100%;
      max-height: 100px;
      object-fit: contain;
      border-radius: 8px;
      transition: transform 0.3s ease;
      display: block;
      margin: 0 auto;
    }

    .brand-box:hover img {
      transform: scale(1.05);
    }

    .brand-label {
      margin-top: 15px;
      font-size: 14px;
      color: #444;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .logo {
        width: 200px;
      }
      .container {
        padding: 20px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .brand-box {
        height: 200px;
      }
      .brand-box img {
        max-height: 80px;
      }
    }


 .top-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 30px 40px;
		  max-width: 200px;
		margin-left: auto;
    margin-right: auto;
  /* display: flex;
  align-items: center;  
  justify-content: center; */
    }