      body {
          margin: 0;
          font-family: 'Segoe UI', sans-serif;
          background: #f5f7fa;
          color: #1e293b;
      }

      /* Layout container */
      .container {
          max-width: 1200px;
          margin: auto;
          padding: 40px 20px;
      }

      /* Top section: text left, image right */
      .top-section {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          gap: 30px;
          margin-bottom: 50px;
      }

      .left-section {
          flex: 1 1 500px;
      }
      .left-section h1 {
          font-size: 3rem;
          font-weight: bold;
          color: #0f172a;
          margin-bottom: 20px;
      }
      .left-section p {
          font-size: 1.1rem;
          color: #475569;
          margin-bottom: 30px;
      }
      .buttons {
          display: flex;
          gap: 15px;
      }
      .btn {
          padding: 12px 24px;
          border-radius: 10px;
          font-size: 1rem;
          font-weight: 600;
          cursor: pointer;
          border: none;
          transition: all 0.3s ease;
      }
      .btn-primary {
          background: linear-gradient(90deg, #2563eb, #1d4ed8);
          color: white;
      }
      .btn-primary:hover {
          background: linear-gradient(90deg, #1d4ed8, #2563eb);
      }
      .btn-outline {
          background: white;
          border: 1px solid #e2e8f0;
      }
      .btn-outline:hover {
          background: #f1f5f9;
      }

      /* Right animated image */
      .right-section {
          flex: 1 1 400px;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
      }
      .right-section img {
          max-width: 100%;
          border-radius: 15px;
          box-shadow: 0 15px 40px rgba(0,0,0,0.1);
          animation: fadeInUp 1s ease forwards;
      }

      @keyframes fadeInUp {
          0% {
              opacity: 0;
              transform: translateY(30px) scale(0.95);
          }
          100% {
              opacity: 1;
              transform: translateY(0) scale(1);
          }
      }

      /* Client section */
      .client-section {
          background: white;
          padding: 30px;
          border-radius: 20px;
          box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      }
      .client-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
          gap: 20px;
          align-items: center;
      }
      .client-card {
          background: #f8fafc;
          padding: 20px;
          border-radius: 12px;
          display: flex;
          justify-content: center;
          align-items: center;
          transition: transform 0.3s ease;
      }
      .client-card img {
          max-width: 100%;
          max-height: 80px;
          object-fit: contain;
          filter: grayscale(100%);
          transition: filter 0.3s ease;
      }
      .client-card:hover {
          transform: translateY(-5px);
      }
      .client-card:hover img {
          filter: grayscale(0%);
      }

      @media (max-width: 768px) {
          .left-section h1 {
              font-size: 2rem;
          }
          .client-card img {
              max-height: 60px;
          }
      }