    .robot-grid-section {
      padding: 1rem 1rem;
      background: #000;
      text-align: center;
    }

    .section-header {
      margin-bottom: 2.0rem;
    }

    .section-title {
      font-size: 2rem;
      color: #1e3a8a;
      margin-bottom: 0.5rem;
    }

    .section-subtitle-robot {
      font-size: 1.5rem;
      color: #555;
    }

    .grid-two {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .grid-item {
      background: #333;
      border: 1px solid #e2e8f0;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease;
    }

    .grid-item:hover {
      transform: translateY(-5px);
    }

    .grid-title {
      font-size: 1.5rem;
      color: #c4d2d7;
      margin-bottom: 0.75rem;
    }

    .grid-desc {
      font-size: 1rem;
      color: #c4d2d7;
      line-height: 1.6;
    }

    /* Responsive tweaks */
    @media (max-width: 600px) {
      .section-title {
        font-size: 2rem;
      }

      .section-subtitle {
        font-size: 1rem;
      }

      .grid-title {
        font-size: 1.25rem;
      }

      .grid-desc {
        font-size: 0.95rem;
      }
    }